Inhaltsverzeichnis

Development of
Algorithmic Constructions

07:25:23
Deutsch
18.Apr 2024

Polynom = x^2+124x-3

0. Sequence

1. Algorithm

2. Mathematical background

3. Correctness of the algorithm

4. Infinity of the sequence

5. Sequence of the polynom with 1

6. Sequence of the polynom (only primes)

7. Distribution of the primes

8. Check for existing Integer Sequences by OEIS

0. Sequence

f(0) = 3 = 3
f(1) = 61 = 61
f(2) = 249 = 3*83
f(3) = 189 = 3*3*3*7
f(4) = 509 = 509
f(5) = 321 = 3*107
f(6) = 777 = 3*7*37
f(7) = 457 = 457
f(8) = 1053 = 3*3*3*3*13
f(9) = 597 = 3*199
f(10) = 1337 = 7*191
f(11) = 741 = 3*13*19
f(12) = 1629 = 3*3*181
f(13) = 889 = 7*127
f(14) = 1929 = 3*643
f(15) = 1041 = 3*347
f(16) = 2237 = 2237
f(17) = 1197 = 3*3*7*19
f(18) = 2553 = 3*23*37
f(19) = 1357 = 23*59
f(20) = 2877 = 3*7*137
f(21) = 1521 = 3*3*13*13
f(22) = 3209 = 3209
f(23) = 1689 = 3*563
f(24) = 3549 = 3*7*13*13
f(25) = 1861 = 1861
f(26) = 3897 = 3*3*433
f(27) = 2037 = 3*7*97
f(28) = 4253 = 4253
f(29) = 2217 = 3*739
f(30) = 4617 = 3*3*3*3*3*19
f(31) = 2401 = 7*7*7*7
f(32) = 4989 = 3*1663
f(33) = 2589 = 3*863
f(34) = 5369 = 7*13*59
f(35) = 2781 = 3*3*3*103
f(36) = 5757 = 3*19*101
f(37) = 2977 = 13*229
f(38) = 6153 = 3*7*293
f(39) = 3177 = 3*3*353
f(40) = 6557 = 79*83
f(41) = 3381 = 3*7*7*23
f(42) = 6969 = 3*23*101
f(43) = 3589 = 37*97
f(44) = 7389 = 3*3*821
f(45) = 3801 = 3*7*181
f(46) = 7817 = 7817
f(47) = 4017 = 3*13*103
f(48) = 8253 = 3*3*7*131
f(49) = 4237 = 19*223
f(50) = 8697 = 3*13*223
f(51) = 4461 = 3*1487
f(52) = 9149 = 7*1307
f(53) = 4689 = 3*3*521
f(54) = 9609 = 3*3203
f(55) = 4921 = 7*19*37
f(56) = 10077 = 3*3359
f(57) = 5157 = 3*3*3*191
f(58) = 10553 = 61*173
f(59) = 5397 = 3*7*257
f(60) = 11037 = 3*13*283
f(61) = 5641 = 5641
f(62) = 11529 = 3*3*3*7*61
f(63) = 5889 = 3*13*151
f(64) = 12029 = 23*523
f(65) = 6141 = 3*23*89
f(66) = 12537 = 3*3*7*199
f(67) = 6397 = 6397
f(68) = 13053 = 3*19*229
f(69) = 6657 = 3*7*317
f(70) = 13577 = 13577
f(71) = 6921 = 3*3*769
f(72) = 14109 = 3*4703
f(73) = 7189 = 7*13*79
f(74) = 14649 = 3*19*257
f(75) = 7461 = 3*3*829
f(76) = 15197 = 7*13*167
f(77) = 7737 = 3*2579
f(78) = 15753 = 3*59*89
f(79) = 8017 = 8017
f(80) = 16317 = 3*3*7*7*37
f(81) = 8301 = 3*2767
f(82) = 16889 = 16889
f(83) = 8589 = 3*7*409
f(84) = 17469 = 3*3*3*647
f(85) = 8881 = 83*107
f(86) = 18057 = 3*13*463
f(87) = 9177 = 3*7*19*23
f(88) = 18653 = 23*811
f(89) = 9477 = 3*3*3*3*3*3*13
f(90) = 19257 = 3*7*7*131
f(91) = 9781 = 9781
f(92) = 19869 = 3*37*179
f(93) = 10089 = 3*3*19*59
f(94) = 20489 = 7*2927
f(95) = 10401 = 3*3467
f(96) = 21117 = 3*7039
f(97) = 10717 = 7*1531
f(98) = 21753 = 3*3*2417
f(99) = 11037 = 3*13*283
f(100) = 22397 = 22397

1. Algorithm

If you are interested in some better algorithms have a look at quadr_Sieb_x^2+1.php.

2. Mathematical background

Lemma: If p | f(x) then also p | f(x+p) and p | f(-x-b/a) a) p | f(x) <=> ax^2 + bx + c = 0 mod p p | f(x+p) <=> a(x+p)^2 + b(x+p) + c = 0 mod p <=> ax^2 + 2axp + ap^2 + bx + bp + c = 0 mod p <=> ax^2 + bx + c = 0 mod p Thus if p | f(x) then p | f(x+p) b) if b = 0 mod a p | f(x) <=> ax^2 + bx + c = 0 mod p p | f(-x-b/a) <=> a(-x-b/a)^2 + b(-x-b/a) + c = 0 mod p <=> ax^2 + 2bx + b^2/a - bx - b^2/a + c = 0 mod p <=> ax^2 + bx + c = 0 mod p Thus if p | f(x) then p | f(-x-b/a)

3. Correctness of the algorithm

The proof for this polynom is similar to the proof for the polynom f(x)=x^2-4x+1. a) First terms for the polynom f(x) = x^2+124x-3

f(0)=3
f(1)=61
f(2)=83
f(3)=7
f(4)=509
f(5)=107
f(6)=37
f(7)=457
f(8)=13
f(9)=199
f(10)=191
f(11)=19
f(12)=181
f(13)=127
f(14)=643
f(15)=347
f(16)=2237
f(17)=1
f(18)=23
f(19)=59
f(20)=137
f(21)=1
f(22)=3209
f(23)=563
f(24)=1
f(25)=1861
f(26)=433
f(27)=97
f(28)=4253
f(29)=739
f(30)=1
f(31)=1
f(32)=1663
f(33)=863
f(34)=1
f(35)=103
f(36)=101
f(37)=229
f(38)=293
f(39)=353
f(40)=79
f(41)=1
f(42)=1
f(43)=1
f(44)=821
f(45)=1
f(46)=7817
f(47)=1
f(48)=131
f(49)=223
f(50)=1
f(51)=1487
f(52)=1307
f(53)=521
f(54)=3203
f(55)=1
f(56)=3359
f(57)=1
f(58)=173
f(59)=257
f(60)=283
f(61)=5641
f(62)=1
f(63)=151
f(64)=523
f(65)=89
f(66)=1
f(67)=6397
f(68)=1
f(69)=317
f(70)=13577
f(71)=769
f(72)=4703
f(73)=1
f(74)=1
f(75)=829
f(76)=167
f(77)=2579
f(78)=1
f(79)=8017
f(80)=1
f(81)=2767
f(82)=16889
f(83)=409
f(84)=647
f(85)=1
f(86)=463
f(87)=1
f(88)=811
f(89)=1
f(90)=1
f(91)=9781
f(92)=179
f(93)=1
f(94)=2927
f(95)=3467
f(96)=7039
f(97)=1531
f(98)=2417
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+124x-3 could be written as f(y)= y^2-3847 with x=y-62

c) Backsubstitution Beside by backsubstitution you get an estimation for the huge of the primes with p | f(x) and p < f(x) f'(y)>(2y-1) with with y=x+62
f'(x)>2x+123

4. Infinity of the sequence

The mathematical proof is analogue to the proof for the polynom f(x)=x^2+1

5. Sequence of the polynom with 1

3, 61, 83, 7, 509, 107, 37, 457, 13, 199, 191, 19, 181, 127, 643, 347, 2237, 1, 23, 59, 137, 1, 3209, 563, 1, 1861, 433, 97, 4253, 739, 1, 1, 1663, 863, 1, 103, 101, 229, 293, 353, 79, 1, 1, 1, 821, 1, 7817, 1, 131, 223, 1, 1487, 1307, 521, 3203, 1, 3359, 1, 173, 257, 283, 5641, 1, 151, 523, 89, 1, 6397, 1, 317, 13577, 769, 4703, 1, 1, 829, 167, 2579, 1, 8017, 1, 2767, 16889, 409, 647, 1, 463, 1, 811, 1, 1, 9781, 179, 1, 2927, 3467, 7039, 1531, 2417, 1, 22397, 541, 197, 11689, 1129, 4007, 1283, 1373, 1193, 12697, 373, 1, 1, 4463, 9043, 1, 1031, 1, 4079, 1, 3253, 14821, 1429, 1, 1, 1, 10499, 15937, 827, 1, 241, 1, 1609, 743, 1, 5827, 5051, 1, 1, 1, 1, 479, 211, 1, 677, 19501, 1877, 2213, 40253, 6779, 1, 1597, 1, 1009, 1, 7207, 1, 1, 14851, 7499, 6491, 2549, 15443, 1231, 1, 883, 1301, 1, 1, 1303, 617, 1201, 50909, 8563, 823, 26161, 17599, 683, 1097, 1, 1, 3943, 977, 3121, 929, 1361, 19219, 29077, 1, 9859, 1, 271, 1, 1, 20563, 1481, 1063, 1171, 269, 4591, 21599, 1, 1, 1, 22303, 33721, 1, 601, 1, 1657, 7793, 599, 23743, 1709, 1, 4049, 1, 36997, 24851, 1, 569, 1, 25603, 5527, 2887, 1, 1, 1, 1, 3109, 3877, 1, 6353, 4621, 3989, 42181, 28319, 1, 853, 761, 787, 1, 757, 1, 1, 1, 3371, 45817, 1, 673, 93497, 1, 31583, 1, 32003, 1, 1093, 16319, 1, 49597, 11093, 16747, 14447, 16963, 1, 1, 1, 1, 8081, 839, 1, 1, 1, 1, 109049, 18287, 751, 1, 4139, 2677, 113117, 1459, 12721, 1, 2971, 19427, 2393, 6553, 39551, 719, 5717, 6709, 121469, 2909, 1, 2687, 727, 1, 125753, 1, 1, 383, 1, 21563, 18587, 2423, 1, 1, 44351, 7433, 1, 3221, 45343, 68389, 1, 1213, 1, 1013, 1, 70657, 3643, 1, 143609, 1, 48383, 1489, 1, 2731, 21179, 421, 49939, 1, 1, 1951, 1, 1, 1321, 449, 52051, 1, 1, 1, 7589, 1, 1, 1, 1787, 27239, 54751, 907, 18433, 1, 1279, 1, 2089, 85021, 1, 28619, 172553, 1, 8297, 87541, 1, 1, 7723, 1, 59779, 1, 20117, 30319, 26111, 1, 1, 1571, 1, 2399, 5081, 1499, 3329, 95317, 63839, 1, 1, 32363, 1327, 7537, 1, 1433, 1, 1, 22273, 1, 1, 33863, 1607, 1627, 68639, 5443, 1, 11593, 209597, 2699, 10069, 106189, 1, 5101, 2011, 1, 8039, 1, 1, 2819, 31547, 1, 5711, 1153, 1, 1, 226553, 5417, 76159, 1289, 25601, 1, 1, 1051, 3719, 9049, 1291, 2081, 34031, 1, 1, 1, 1, 1, 244157, 1, 82051, 1, 1, 1, 250169, 41863, 4003, 126601, 1, 1, 13487, 14293, 1, 18523, 86783, 1117, 1973, 1, 3833, 132757, 4231, 1, 268637, 6421, 1, 10453, 1, 6521, 21149, 1, 1, 577, 93059, 15569, 5741, 2477, 94483, 20323, 2441, 47779, 12511, 1, 32213, 145501, 1987, 1, 294269, 1, 1, 4021, 99551, 1, 300857, 1, 1, 21727, 3769, 1, 1, 51439, 1, 4201, 1, 2269, 1, 2503, 105503, 1, 1801, 2539, 321053, 53699, 1, 8539, 1, 1, 593, 4219, 1, 23671, 8527, 55619, 334877, 1, 112403, 1901, 1, 1, 1493, 57179, 1, 172717, 2027, 1, 348989, 58363, 39041, 25183, 3187, 59159, 613, 19853, 1, 1, 17189, 1, 27953, 8681, 1999, 1, 1, 1, 1, 61987, 5923, 187189, 9631, 1, 54011, 1621, 126851, 27271, 127679, 1, 1, 9209, 1, 3299, 6199, 5023, 1, 65719, 1, 8627, 1, 1, 1, 1, 134399, 1, 641, 22613, 1, 3593, 136963, 1, 6563, 69127, 1, 1, 1, 209977, 140419, 10061, 423869, 1, 1, 213901, 11003, 2657, 1667, 1, 7621, 31123, 16187, 73063, 439709, 10501, 1, 3637, 21193, 1, 12101, 1, 1, 225889, 1, 3607, 19819, 3313, 152851, 1, 1, 1, 5099, 77563, 1, 1, 1, 78479, 472253, 1, 1, 238201, 12251, 3803, 480569, 1, 23017, 242377, 2843, 3533, 3037, 81727, 1, 35227, 8677, 6359, 497417, 1, 1, 250837, 23957, 9343, 505949, 1, 24229, 255121, 6317, 1, 39581, 85999, 57493, 2851, 7541, 1, 74747, 1, 2113, 1747, 1, 29473, 531977, 1, 1, 268189, 4597, 12841, 28463, 90379, 1, 1523, 182239, 91367, 4133, 1, 1, 1721, 8053, 2381, 6277, 13337, 187219, 281581, 8963, 1, 567689, 4993, 9059, 1693, 191251, 13697, 3413, 1, 193283, 1, 2341, 1, 1, 97919, 8537, 1, 1, 98947, 595229, 1, 3499, 299941, 1, 1, 2711, 1, 1, 8233, 2099, 2617, 1, 102587, 15823, 1, 68917, 1699, 623417, 1, 1, 1, 29989, 105227, 1, 3917, 30293, 1, 213119, 5087, 10891, 1, 1, 1, 1949, 108439, 93179, 1, 1, 4159, 1, 110063, 1, 1, 2153, 333457, 1, 1, 671837, 112247, 2473, 338389, 25127, 8719, 13913, 113899, 1, 1, 229459, 6053, 691709, 5503, 1, 1, 4751, 1, 2347, 117239, 33577, 353401, 78721, 1, 9011, 118927, 1, 1, 18427, 1, 1, 1, 241823, 363589, 1, 1, 38543, 17477, 245251, 368737, 3571, 1, 4447, 1, 911, 1879, 249859, 125219, 1, 2207, 1, 54163, 253343, 14107, 58733, 1, 255679, 29569, 1, 1, 20921, 1, 12343, 16943, 11321, 2663, 784697, 3361, 13829, 56431, 1, 44089, 1, 132863, 1, 400381, 12739, 134059, 806153, 19237, 1, 405781, 1979, 1, 8089, 1, 1, 941, 274751, 45893, 1, 2267, 277183, 1, 92801, 2287, 1, 1, 1, 4099, 1, 1, 4271, 1, 5807, 1, 1, 2273, 861053, 1, 1, 1, 1, 145063, 2543, 145687, 1, 438937, 41893, 1, 883517, 7027, 22751, 444589, 297023, 1, 1993, 149459, 42793, 450277, 1, 7933, 1, 6581, 1, 5011, 1, 152639, 917753, 1, 3167, 1, 1, 51521, 1, 11939, 1, 467557, 8009, 1, 49523, 1, 1, 9661, 316243, 1, 1, 1, 24527, 8123, 45737, 1, 1, 1, 322783, 485161, 36011, 23197, 976253, 8581, 15559, 1021, 328063, 164363, 10859, 55009, 330719, 71011, 14437, 2411, 1, 1, 1, 13597, 1, 1, 1012217, 13003, 1, 509137, 1, 1, 7477, 1, 342803, 1, 1, 4421, 148079, 173099, 26683, 1, 1, 2957, 1048829, 1, 116993, 27763, 1, 1, 81629, 59069, 7247, 1, 3461, 19843, 153371, 2939, 6089, 1, 1, 180667, 1086089, 1, 1, 23747, 1, 1, 13907, 61153, 52517, 552481, 369023, 8803, 1111289, 185567, 28603, 1, 1, 1,

6. Sequence of the polynom (only primes)

3, 61, 83, 7, 509, 107, 37, 457, 13, 199, 191, 19, 181, 127, 643, 347, 2237, 23, 59, 137, 3209, 563, 1861, 433, 97, 4253, 739, 1663, 863, 103, 101, 229, 293, 353, 79, 821, 7817, 131, 223, 1487, 1307, 521, 3203, 3359, 173, 257, 283, 5641, 151, 523, 89, 6397, 317, 13577, 769, 4703, 829, 167, 2579, 8017, 2767, 16889, 409, 647, 463, 811, 9781, 179, 2927, 3467, 7039, 1531, 2417, 22397, 541, 197, 11689, 1129, 4007, 1283, 1373, 1193, 12697, 373, 4463, 9043, 1031, 4079, 3253, 14821, 1429, 10499, 15937, 827, 241, 1609, 743, 5827, 5051, 479, 211, 677, 19501, 1877, 2213, 40253, 6779, 1597, 1009, 7207, 14851, 7499, 6491, 2549, 15443, 1231, 883, 1301, 1303, 617, 1201, 50909, 8563, 823, 26161, 17599, 683, 1097, 3943, 977, 3121, 929, 1361, 19219, 29077, 9859, 271, 20563, 1481, 1063, 1171, 269, 4591, 21599, 22303, 33721, 601, 1657, 7793, 599, 23743, 1709, 4049, 36997, 24851, 569, 25603, 5527, 2887, 3109, 3877, 6353, 4621, 3989, 42181, 28319, 853, 761, 787, 757, 3371, 45817, 673, 93497, 31583, 32003, 1093, 16319, 49597, 11093, 16747, 14447, 16963, 8081, 839, 109049, 18287, 751, 4139, 2677, 113117, 1459, 12721, 2971, 19427, 2393, 6553, 39551, 719, 5717, 6709, 121469, 2909, 2687, 727, 125753, 383, 21563, 18587, 2423, 44351, 7433, 3221, 45343, 68389, 1213, 1013, 70657, 3643, 143609, 48383, 1489, 2731, 21179, 421, 49939, 1951, 1321, 449, 52051, 7589, 1787, 27239, 54751, 907, 18433, 1279, 2089, 85021, 28619, 172553, 8297, 87541, 7723, 59779, 20117, 30319, 26111, 1571, 2399, 5081, 1499, 3329, 95317, 63839, 32363, 1327, 7537, 1433, 22273, 33863, 1607, 1627, 68639, 5443, 11593, 209597, 2699, 10069, 106189, 5101, 2011, 8039, 2819, 31547, 5711, 1153, 226553, 5417, 76159, 1289, 25601, 1051, 3719, 9049, 1291, 2081, 34031, 244157, 82051, 250169, 41863, 4003, 126601, 13487, 14293, 18523, 86783, 1117, 1973, 3833, 132757, 4231, 268637, 6421, 10453, 6521, 21149, 577, 93059, 15569, 5741, 2477, 94483, 20323, 2441, 47779, 12511, 32213, 145501, 1987, 294269, 4021, 99551, 300857, 21727, 3769, 51439, 4201, 2269, 2503, 105503, 1801, 2539, 321053, 53699, 8539, 593, 4219, 23671, 8527, 55619, 334877, 112403, 1901, 1493, 57179, 172717, 2027, 348989, 58363, 39041, 25183, 3187, 59159, 613, 19853, 17189, 27953, 8681, 1999, 61987, 5923, 187189, 9631, 54011, 1621, 126851, 27271, 127679, 9209, 3299, 6199, 5023, 65719, 8627, 134399, 641, 22613, 3593, 136963, 6563, 69127, 209977, 140419, 10061, 423869, 213901, 11003, 2657, 1667, 7621, 31123, 16187, 73063, 439709, 10501, 3637, 21193, 12101, 225889, 3607, 19819, 3313, 152851, 5099, 77563, 78479, 472253, 238201, 12251, 3803, 480569, 23017, 242377, 2843, 3533, 3037, 81727, 35227, 8677, 6359, 497417, 250837, 23957, 9343, 505949, 24229, 255121, 6317, 39581, 85999, 57493, 2851, 7541, 74747, 2113, 1747, 29473, 531977, 268189, 4597, 12841, 28463, 90379, 1523, 182239, 91367, 4133, 1721, 8053, 2381, 6277, 13337, 187219, 281581, 8963, 567689, 4993, 9059, 1693, 191251, 13697, 3413, 193283, 2341, 97919, 8537, 98947, 595229, 3499, 299941, 2711, 8233, 2099, 2617, 102587, 15823, 68917, 1699, 623417, 29989, 105227, 3917, 30293, 213119, 5087, 10891, 1949, 108439, 93179, 4159, 110063, 2153, 333457, 671837, 112247, 2473, 338389, 25127, 8719, 13913, 113899, 229459, 6053, 691709, 5503, 4751, 2347, 117239, 33577, 353401, 78721, 9011, 118927, 18427, 241823, 363589, 38543, 17477, 245251, 368737, 3571, 4447, 911, 1879, 249859, 125219, 2207, 54163, 253343, 14107, 58733, 255679, 29569, 20921, 12343, 16943, 11321, 2663, 784697, 3361, 13829, 56431, 44089, 132863, 400381, 12739, 134059, 806153, 19237, 405781, 1979, 8089, 941, 274751, 45893, 2267, 277183, 92801, 2287, 4099, 4271, 5807, 2273, 861053, 145063, 2543, 145687, 438937, 41893, 883517, 7027, 22751, 444589, 297023, 1993, 149459, 42793, 450277, 7933, 6581, 5011, 152639, 917753, 3167, 51521, 11939, 467557, 8009, 49523, 9661, 316243, 24527, 8123, 45737, 322783, 485161, 36011, 23197, 976253, 8581, 15559, 1021, 328063, 164363, 10859, 55009, 330719, 71011, 14437, 2411, 13597, 1012217, 13003, 509137, 7477, 342803, 4421, 148079, 173099, 26683, 2957, 1048829, 116993, 27763, 81629, 59069, 7247, 3461, 19843, 153371, 2939, 6089, 180667, 1086089, 23747, 13907, 61153, 52517, 552481, 369023, 8803, 1111289, 185567, 28603,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+124x-3 and
the reducible primes which appear as divisor for the first time
p | x^2+124x-3 and p < x^2+124x-3

To avoid confusion with the number of primes:
I did not count the primes <= A
but I counted the primes appending the x and therefore the x <= A

ABCDEFGHIJK
exponent =log10 (x)<=xnumber of all primesnumber of primes p = f(x) number of primes p | f(x) C/xD/xE/xC(n) / C(n-1)D(n) / D(n-1)E(n) / E(n-1)
11010461.0000000.4000000.6000000.0000000.0000000.000000
21006816520.6800000.1600000.5200006.8000004.0000008.666667
31.0006251045210.6250000.1040000.5210009.1911766.50000010.019231
410.0006.4116795.7320.6411000.0679000.57320010.2576006.52884611.001920
5100.00065.4385.21160.2270.6543800.0521100.60227010.2071447.67452110.507153
61.000.000661.48842.102619.3860.6614880.0421020.61938610.1086228.07944810.284191
710.000.0006.659.267356.3226.302.9450.6659270.0356320.63029510.0671018.46330410.176118
8100.000.00066.934.4673.083.33063.851.1370.6693450.0308330.63851110.0513278.65321310.130365
91.000.000.000672.012.06927.183.579644.828.4900.6720120.0271840.64482810.0398518.81630610.098935
1010.000.000.0006.741.257.469243.057.6346.498.199.8350.6741260.0243060.64982010.0314528.94134010.077409


ABCDEFGHIJK
exponent =log2 (x)<=xnumber of all primesnumber of primes p = f(x) number of primes p | f(x) C/xD/xE/xC(n) / C(n-1)D(n) / D(n-1)E(n) / E(n-1)
123211.5000001.0000000.5000000.0000000.0000000.000000
245321.2500000.7500000.5000001.6666671.5000002.000000
388441.0000000.5000000.5000001.6000001.3333332.000000
416155100.9375000.3125000.6250001.8750001.2500002.500000
532258170.7812500.2500000.5312501.6666671.6000001.700000
6644610360.7187500.1562500.5625001.8400001.2500002.117647
71288720670.6796880.1562500.5234381.8913042.0000001.861111
8256166301360.6484380.1171880.5312501.9080461.5000002.029851
9512322542680.6289060.1054690.5234381.9397591.8000001.970588
101.0246371065310.6220700.1035160.5185551.9782611.9629631.981343
112.0481.2841811.1030.6269530.0883790.5385742.0156991.7075472.077213
124.0962.5913162.2750.6325680.0771480.5554202.0179131.7458562.062557
138.1925.2335564.6770.6387940.0678710.5709232.0196841.7594942.055824
1416.38410.5421.0519.4910.6434330.0641480.5792852.0145231.8902882.029292
1532.76821.2661.89819.3680.6489870.0579220.5910642.0172641.8058992.040670
1665.53642.7563.54339.2130.6524050.0540620.5983432.0105331.8667022.024628
17131.07286.0056.61579.3900.6561660.0504680.6056982.0115311.8670622.024584
18262.144172.51812.368160.1500.6581040.0471800.6109242.0059071.8696902.017256
19524.288345.92223.273322.6490.6597940.0443900.6154042.0051361.8817112.014668
201.048.576693.77544.010649.7650.6616350.0419710.6196642.0055821.8910332.013845
212.097.1521.390.36583.3711.306.9940.6629780.0397540.6232232.0040571.8943652.011487
224.194.3042.786.284158.8242.627.4600.6643020.0378670.6264352.0039951.9050272.010308
238.388.6085.583.378302.6085.280.7700.6655910.0360740.6295172.0038801.9053042.009838
2416.777.21611.186.912577.28610.609.6260.6667920.0344090.6323832.0036101.9077022.009106
2533.554.43222.408.7301.105.40221.303.3280.6678320.0329440.6348892.0031201.9148262.007925
2667.108.86444.884.8212.118.82442.765.9970.6688360.0315730.6372632.0030061.9167902.007480
27134.217.72889.889.5254.068.93285.820.5930.6697290.0303160.6394132.0026711.9203732.006748
28268.435.456180.004.1357.826.739172.177.3960.6705680.0291570.6414112.0025041.9235362.006248
29536.870.912360.428.53415.077.992345.350.5420.6713500.0280850.6432652.0023351.9264722.005783
301.073.741.824721.645.77329.081.919692.563.8540.6720850.0270850.6450002.0021881.9287662.005394
312.147.483.6481.444.749.71256.170.9781.388.578.7340.6727640.0261570.6466072.0020211.9314742.004983
324.294.967.2962.892.235.308108.610.9972.783.624.3110.6734010.0252880.6481132.0018941.9335792.004657
338.589.934.5925.789.624.468210.252.6675.579.371.8010.6740010.0244770.6495242.0017821.9358322.004355
3417.179.869.18411.588.938.064407.425.72811.181.512.3360.6745650.0237150.6508502.0016731.9377912.004081


ABCDEFGHI
exponent =log2 (x) <=xnumber of primes with p=f(x) number of primes with p=f(x) and p%6=1 number of primes with p=f(x) and p%6=5 number of primes with p=f(x) and p%8=1 number of primes with p=f(x) and p%8=3 number of primes with p=f(x) and p%8=5 number of primes with p=f(x) and p%8=7
122100110
243110120
384211120
4165221130
5328342150
66410454150
71282011810190
8256301811141150
9512542825231300
101.0241065649471580
112.0481819585911890
124.09631615316215911560
138.19255627228327212830
1416.3841.05150254852515250
1532.7681.89890599295719400
1665.5363.5431.7451.7971.77811.7640
17131.0726.6153.3183.2963.34013.2740
18262.14412.3686.2886.0796.24816.1190
19524.28823.27311.82711.44511.764111.5080
201.048.57644.01022.39921.61022.183121.8260
212.097.15283.37142.23641.13441.909141.4610
224.194.304158.82480.52478.29979.653179.1700
238.388.608302.608153.229149.378151.5251151.0820
2416.777.216577.286291.902285.383288.5031288.7820
2533.554.4321.105.402558.795546.606552.3411553.0600
2667.108.8642.118.8241.071.1691.047.6541.058.75211.060.0710
27134.217.7284.068.9322.054.8912.014.0402.034.25312.034.6780
28268.435.4567.826.7393.952.7273.874.0113.913.31413.913.4240
29536.870.91215.077.9927.608.8247.469.1677.538.09617.539.8950
301.073.741.82429.081.91914.671.77214.410.14614.539.389114.542.5290
312.147.483.64856.170.97828.331.77427.839.20328.084.850128.086.1270
324.294.967.296108.610.99754.759.62353.851.37354.309.016154.301.9800
338.589.934.592210.252.667105.974.314104.278.352105.126.5571105.126.1090
3417.179.869.184407.425.728205.302.497202.123.230203.711.5691203.714.1580


ABCDEFGHI
exponent =log2 (x) <=xnumber of primes with p|f(x) number of primes with p=f(x) and p%6=1 number of primes with p=f(x) and p%6=5 number of primes with p=f(x) and p%8=1 number of primes with p=f(x) and p%8=3 number of primes with p=f(x) and p%8=5 number of primes with p=f(x) and p%8=7
121010100
242110101
384220211
41610640424
532171073725
664361620612711
712867303711201422
8256136667029392840
951226813113758795180
101.024531258273100168108155
112.0481.103547556230324227322
124.0962.2751.1341.141481664486644
138.1924.6772.3522.3251.0251.3221.0341.296
1416.3849.4914.7594.7322.1222.6382.1172.614
1532.76819.3689.7419.6274.3445.3934.3845.247
1665.53639.21319.60919.6048.93510.7328.92210.624
17131.07279.39039.94339.44718.04321.74118.27921.327
18262.144160.15080.28979.86136.74443.33437.05243.020
19524.288322.649161.671160.97874.30186.81974.78286.747
201.048.576649.765325.055324.710150.626173.635151.303174.201
212.097.1521.306.994653.611653.383305.115347.943305.588348.348
224.194.3042.627.4601.313.6641.313.796616.953697.237615.576697.694
238.388.6085.280.7702.641.4772.639.2931.244.2101.396.6701.242.3171.397.573
2416.777.21610.609.6265.306.1975.303.4292.505.9482.799.1132.505.8762.798.689
2533.554.43221.303.32810.656.00610.647.3225.047.2785.605.7705.045.9665.604.314
2667.108.86442.765.99721.390.44021.375.55710.155.11211.226.12010.156.61311.228.152
27134.217.72885.820.59342.923.90642.896.68720.424.57222.483.87720.427.42322.484.721
28268.435.456172.177.39686.118.87386.058.52341.062.51545.021.00841.067.66545.026.208
29536.870.912345.350.542172.722.267172.628.27582.511.31990.152.75082.530.43790.156.036
301.073.741.824692.563.854346.374.163346.189.691165.752.312180.512.899165.786.816180.511.827
312.147.483.6481.388.578.734694.477.162694.101.572332.900.554361.393.451332.905.442361.379.287
324.294.967.2962.783.624.3111.392.133.6571.391.490.654668.376.414723.438.992668.391.994723.416.911
338.589.934.5925.579.371.8012.790.333.9982.789.037.8031.341.597.3271.448.100.6591.341.580.2721.448.093.543
3417.179.869.18411.181.512.3365.591.984.1555.589.528.1812.692.250.2182.898.510.0402.692.211.2722.898.540.806


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 61, 83, 7, 509, 107, 37, 457, 13, 199, 191, 19, 181, 127, 643, 347, 2237, 1, 23, 59,
Found in Database : 3, 61, 83, 7, 509, 107, 37, 457, 13, 199, 191, 19, 181, 127, 643, 347, 2237, 23, 59, 137, 3209, 563, 1861, 433, 97, 4253, 739, 1663, 863, 103, 101, 229, 293, 353,
Found in Database : 3, 7, 13, 19, 23, 37, 59, 61, 79, 83, 89, 97, 101, 103, 107, 127, 131, 137,