Problem ID: PE-0001
Header: Multiples of 3 or 5
Description: If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum of these multiples is 23.
Find the sum of all the multiples of 3 or 5 below 1000.
Math function:

f(n) = ∑(i*3,I=1..int(n/3)) + ∑(i*5,I=1..int(n/5)) - ∑(i*15,I=1..int(n/15))

Formula:

f(n) = ((3*(Int(n/3)+Int(n/3)^2)) + (5*(Int(n/5)+Int(n/5)^2)) - (15*(Int(n/15)-Int(n/15)^2))) / 2

Data:

3, 5, 6, 9, 10, 12, 15, 18, 20, 21, 24, 25, 27, 30, 33, 35, 36, 39, 40, 42, 45, 48, 50, 51, 54, 55, 57, 60, 63, 65, 66, 69, 70, 72, 75, 78, 80, 81, 84, 85, 87, 90, 93, 95, 96, 99, 100, 102, 105, 108, 110, 111, 114, 115, 117, 120, 123, 125, 126, 129, 130, 132, 135, 138, 140, 141, 144, 145, 147, 150, 153, 155, 156, 159, 160, 162, 165, 168, 170, 171, 174, 175, 177, 180, 183, 185, 186, 189, 190, 192, 195, 198, 200, 201, 204, 205, 207, 210, 213, 215, 216, 219, 220, 222, 225, 228, 230, 231, 234, 235, 237, 240, 243, 245, 246, 249, 250, 252, 255, 258, 260, 261, 264, 265, 267, 270, 273, 275, 276, 279, 280, 282, 285, 288, 290, 291, 294, 295, 297, 300, 303, 305, 306, 309, 310, 312, 315, 318, 320, 321, 324, 325, 327, 330, 333, 335, 336, 339, 340, 342, 345, 348, 350, 351, 354, 355, 357, 360, 363, 365, 366, 369, 370, 372, 375, 378, 380, 381, 384, 385, 387, 390, 393, 395, 396, 399, 400, 402, 405, 408, 410, 411, 414, 415, 417, 420, 423, 425, 426, 429, 430, 432, 435, 438, 440, 441, 444, 445, 447, 450, 453, 455, 456, 459, 460, 462, 465, 468, 470, 471, 474, 475, 477, 480, 483, 485, 486, 489, 490, 492, 495, 498, 500, 501, 504, 505, 507, 510, 513, 515, 516, 519, 520, 522, 525, 528, 530, 531, 534, 535, 537, 540, 543, 545, 546, 549, 550, 552, 555, 558, 560, 561, 564, 565, 567, 570, 573, 575, 576, 579, 580, 582, 585, 588, 590, 591, 594, 595, 597, 600, 603, 605, 606, 609, 610, 612, 615, 618, 620, 621, 624, 625, 627, 630, 633, 635, 636, 639, 640, 642, 645, 648, 650, 651, 654, 655, 657, 660, 663, 665, 666, 669, 670, 672, 675, 678, 680, 681, 684, 685, 687, 690, 693, 695, 696, 699, 700, 702, 705, 708, 710, 711, 714, 715, 717, 720, 723, 725, 726, 729, 730, 732, 735, 738, 740, 741, 744, 745, 747, 750, 753, 755, 756, 759, 760, 762, 765, 768, 770, 771, 774, 775, 777, 780, 783, 785, 786, 789, 790, 792, 795, 798, 800, 801, 804, 805, 807, 810, 813, 815, 816, 819, 820, 822, 825, 828, 830, 831, 834, 835, 837, 840, 843, 845, 846, 849, 850, 852, 855, 858, 860, 861, 864, 865, 867, 870, 873, 875, 876, 879, 880, 882, 885, 888, 890, 891, 894, 895, 897, 900, 903, 905, 906, 909, 910, 912, 915, 918, 920, 921, 924, 925, 927, 930, 933, 935, 936, 939, 940, 942, 945, 948, 950, 951, 954, 955, 957, 960, 963, 965, 966, 969, 970, 972, 975, 978, 980, 981, 984, 985, 987, 990, 993, 995, 996, 999

Other:
Answer:

233168

Timing:
Device: Language: Brute Force: Optimized: Function: Formula: N:
TI-59 "asm" 15 m 32 s 2.5 s 999

Problem ID: PE-0001
Device: Texas Instrument TI-59
Language:
Method: Brute Force
Runtime: 00:15:38  (HH:MM:SS)
Command: 999 A
Variables:
Register: Description:
R-00 N-->0
R-01 Sum
Code:
Address: Code: Key: Description:
000 43 RCL Recal R-00
001 00 00
002 55 / Divide at three
003 03 3
004 95 =
005 22 INV Get the fraction part
006 59 Int
007 67 x=t Test for (R-00 mod 3) = 0
008 00 0 If true then goto address 050
009 50 50
010 43 RCL Recal R-00
011 00 00
012 55 / Divide at five
013 05 5
014 95 =
015 22 INV Get the fraction part
016 59 Int
017 67 x=t Test for (R-00 mod 5) = 0
018 00 0 If true then goto address 050
019 50 50
020 97 Dsz Test for R-00 != 0
021 00 0
022 00 0 If true then goto address 000
023 00 00
024 43 RCL Recall R-01
025 01 01
026 91 R/S Stop execution
..... ..... ..... .....
050 43 RCL Recall R-00
051 00 00
052 44 SUM Add the value to R-01
053 01 01
054 61 GTO Goto adrress 020
055 00 0
056 20 20
..... ..... ..... .....
100 76 Lbl Start program
101 11 A
102 42 STO Put the value in R-00
103 00 00
104 25 CLR Clear R-01
105 42 STO
106 01 01
107 32 x<->t Put value 0 in T-Reg.
108 61 GTO Goto address 000
109 00 0
110 00 00