Inhaltsverzeichnis

Development of
Algorithmic Constructions

10:49:21
Deutsch
16.Apr 2024

Polynom = x^2+103

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) = 103 = 103
f(1) = 13 = 13
f(2) = 107 = 107
f(3) = 7 = 7
f(4) = 119 = 7*17
f(5) = 1 = 1
f(6) = 139 = 139
f(7) = 19 = 19
f(8) = 167 = 167
f(9) = 23 = 23
f(10) = 203 = 7*29
f(11) = 7 = 7
f(12) = 247 = 13*19
f(13) = 17 = 17
f(14) = 299 = 13*23
f(15) = 41 = 41
f(16) = 359 = 359
f(17) = 49 = 7*7
f(18) = 427 = 7*61
f(19) = 29 = 29
f(20) = 503 = 503
f(21) = 17 = 17
f(22) = 587 = 587
f(23) = 79 = 79
f(24) = 679 = 7*97
f(25) = 91 = 7*13
f(26) = 779 = 19*41
f(27) = 13 = 13
f(28) = 887 = 887
f(29) = 59 = 59
f(30) = 1003 = 17*59
f(31) = 133 = 7*19
f(32) = 1127 = 7*7*23
f(33) = 149 = 149
f(34) = 1259 = 1259
f(35) = 83 = 83
f(36) = 1399 = 1399
f(37) = 23 = 23
f(38) = 1547 = 7*13*17
f(39) = 203 = 7*29
f(40) = 1703 = 13*131
f(41) = 223 = 223
f(42) = 1867 = 1867
f(43) = 61 = 61
f(44) = 2039 = 2039
f(45) = 133 = 7*19
f(46) = 2219 = 7*317
f(47) = 289 = 17*17
f(48) = 2407 = 29*83
f(49) = 313 = 313
f(50) = 2603 = 19*137
f(51) = 169 = 13*13
f(52) = 2807 = 7*401
f(53) = 91 = 7*13
f(54) = 3019 = 3019
f(55) = 391 = 17*23
f(56) = 3239 = 41*79
f(57) = 419 = 419
f(58) = 3467 = 3467
f(59) = 7 = 7
f(60) = 3703 = 7*23*23
f(61) = 239 = 239
f(62) = 3947 = 3947
f(63) = 509 = 509
f(64) = 4199 = 13*17*19
f(65) = 541 = 541
f(66) = 4459 = 7*7*7*13
f(67) = 287 = 7*41
f(68) = 4727 = 29*163
f(69) = 19 = 19
f(70) = 5003 = 5003
f(71) = 643 = 643
f(72) = 5287 = 17*311
f(73) = 679 = 7*97
f(74) = 5579 = 7*797
f(75) = 179 = 179
f(76) = 5879 = 5879
f(77) = 377 = 13*29
f(78) = 6187 = 23*269
f(79) = 793 = 13*61
f(80) = 6503 = 7*929
f(81) = 833 = 7*7*17
f(82) = 6827 = 6827
f(83) = 437 = 19*23
f(84) = 7159 = 7159
f(85) = 229 = 229
f(86) = 7499 = 7499
f(87) = 959 = 7*137
f(88) = 7847 = 7*19*59
f(89) = 1003 = 17*59
f(90) = 8203 = 13*631
f(91) = 131 = 131
f(92) = 8567 = 13*659
f(93) = 547 = 547
f(94) = 8939 = 7*1277
f(95) = 1141 = 7*163
f(96) = 9319 = 9319
f(97) = 1189 = 29*41
f(98) = 9707 = 17*571
f(99) = 619 = 619
f(100) = 10103 = 10103

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+103

f(0)=103
f(1)=13
f(2)=107
f(3)=7
f(4)=17
f(5)=1
f(6)=139
f(7)=19
f(8)=167
f(9)=23
f(10)=29
f(11)=1
f(12)=1
f(13)=1
f(14)=1
f(15)=41
f(16)=359
f(17)=1
f(18)=61
f(19)=1
f(20)=503
f(21)=1
f(22)=587
f(23)=79
f(24)=97
f(25)=1
f(26)=1
f(27)=1
f(28)=887
f(29)=59
f(30)=1
f(31)=1
f(32)=1
f(33)=149
f(34)=1259
f(35)=83
f(36)=1399
f(37)=1
f(38)=1
f(39)=1
f(40)=131
f(41)=223
f(42)=1867
f(43)=1
f(44)=2039
f(45)=1
f(46)=317
f(47)=1
f(48)=1
f(49)=313
f(50)=137
f(51)=1
f(52)=401
f(53)=1
f(54)=3019
f(55)=1
f(56)=1
f(57)=419
f(58)=3467
f(59)=1
f(60)=1
f(61)=239
f(62)=3947
f(63)=509
f(64)=1
f(65)=541
f(66)=1
f(67)=1
f(68)=163
f(69)=1
f(70)=5003
f(71)=643
f(72)=311
f(73)=1
f(74)=797
f(75)=179
f(76)=5879
f(77)=1
f(78)=269
f(79)=1
f(80)=929
f(81)=1
f(82)=6827
f(83)=1
f(84)=7159
f(85)=229
f(86)=7499
f(87)=1
f(88)=1
f(89)=1
f(90)=631
f(91)=1
f(92)=659
f(93)=547
f(94)=1277
f(95)=1
f(96)=9319
f(97)=1
f(98)=571
f(99)=619

b) Substitution of the polynom
The polynom f(x)=x^2+103 could be written as f(y)= y^2+103 with x=y+0

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+0
f'(x)>2x-1 with x > 10

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

103, 13, 107, 7, 17, 1, 139, 19, 167, 23, 29, 1, 1, 1, 1, 41, 359, 1, 61, 1, 503, 1, 587, 79, 97, 1, 1, 1, 887, 59, 1, 1, 1, 149, 1259, 83, 1399, 1, 1, 1, 131, 223, 1867, 1, 2039, 1, 317, 1, 1, 313, 137, 1, 401, 1, 3019, 1, 1, 419, 3467, 1, 1, 239, 3947, 509, 1, 541, 1, 1, 163, 1, 5003, 643, 311, 1, 797, 179, 5879, 1, 269, 1, 929, 1, 6827, 1, 7159, 229, 7499, 1, 1, 1, 631, 1, 659, 547, 1277, 1, 9319, 1, 571, 619, 10103, 1, 1, 1, 1, 1, 1, 1, 1, 1, 12203, 1553, 12647, 1609, 13099, 1, 1, 431, 1, 1783, 14503, 1, 2141, 1, 673, 983, 1, 2029, 16487, 1, 347, 1, 1031, 1, 18059, 1, 2657, 337, 467, 607, 1, 1249, 1559, 367, 1, 1, 21419, 1, 373, 1, 3229, 409, 1009, 2939, 23819, 1, 24439, 1, 3581, 1, 25703, 3253, 26347, 1667, 1, 1, 1627, 3499, 2179, 3583, 1, 1, 4241, 1877, 1787, 1, 31079, 3929, 1, 1, 32503, 1, 1, 1, 1171, 613, 4957, 1, 35447, 2239, 883, 1, 5281, 1, 2903, 2383, 2963, 1, 1709, 709, 1, 1, 2153, 1291, 41719, 2633, 1, 1, 2551, 421, 44203, 2789, 1, 1, 1, 5791, 1, 1, 491, 751, 1, 1, 1, 6229, 1, 1, 839, 461, 1063, 821, 53003, 1, 53927, 523, 1, 1, 55799, 3517, 56747, 1, 3037, 1039, 1, 3697, 2593, 1879, 4663, 7639, 677, 1109, 62603, 1, 63607, 4007, 1, 1163, 9377, 8269, 1, 1, 857, 1, 1, 1237, 1, 1, 1201, 1, 4231, 647, 10429, 1, 1, 1, 5783, 4733, 641, 1, 4073, 9743, 2707, 9883, 79627, 1, 1, 1, 81899, 1, 83047, 10453, 1, 757, 4493, 1, 86539, 10891, 87719, 1, 977, 2797, 1, 5669, 1, 11489, 13217, 1663, 93739, 5897, 4129, 1, 5659, 1, 13921, 1, 1, 1, 5261, 6287, 14461, 1, 102503, 12893, 103787, 1, 1, 1, 1, 787, 107687, 1, 5737, 1, 15761, 991, 111659, 739, 1, 1093, 3943, 1, 16529, 3637, 701, 1, 6967, 14891, 17117, 1, 1987, 1, 9431, 15413, 9539, 1, 1, 7883, 126839, 1993, 4423, 1, 2647, 1, 1, 1, 1367, 1, 134059, 1, 1019, 17033, 8059, 8609, 1753, 1, 19997, 1, 10883, 773, 1, 1123, 1741, 1297, 907, 1, 1, 18541, 149099, 1, 21521, 1, 152203, 1471, 8093, 19319, 953, 1, 1, 9857, 158507, 19913, 6961, 20113, 1777, 1451, 1, 1, 8681, 20719, 166567, 1, 24029, 1, 1, 10667, 1151, 1657, 853, 1, 2213, 10979, 176503, 1, 178187, 1, 3671, 1, 1697, 5701, 1, 1, 1, 3319, 186727, 1, 188459, 11833, 4639, 1, 1613, 24103, 193703, 1871, 3313, 1, 1483, 1, 1, 24989, 200807, 1327, 2441, 1, 29201, 1, 1, 1523, 1231, 26119, 4283, 941, 1, 1, 1193, 1, 215399, 3863, 1, 1049, 1, 1, 3623, 27743, 1873, 1, 1, 3527, 1, 1, 228587, 4099, 1, 28933, 1, 1, 1789, 3677, 33757, 1, 238247, 1759, 240203, 7537, 10529, 1, 34877, 2357, 246119, 1, 1811, 15569, 35729, 1, 4273, 1091, 254119, 31891, 1, 1, 2837, 1, 1, 32653, 9043, 32909, 2221, 1, 266359, 2089, 6547, 2591, 1, 1, 5563, 1, 274679, 1, 276779, 34729, 39841, 4999, 3557, 1, 1, 1, 21943, 5113, 41057, 1, 12589, 1, 17159, 1, 41981, 1, 15581, 2857, 3593, 1439, 1, 1, 1, 37963, 304807, 38239, 307019, 9629, 6311, 1, 1, 1, 1, 1, 2273, 1, 1, 1, 13933, 1, 322727, 40483, 1601, 1, 1, 1579, 19387, 41341, 4201, 1, 47741, 20959, 336503, 1319, 1, 42499, 1, 6113, 26423, 10771, 1, 1, 12007, 1, 1, 43969, 352939, 22133, 18701, 1, 1, 1, 8783, 2377, 1583, 5683, 364919, 1, 1, 2003, 21751, 1, 28631, 23339, 1, 1, 377099, 1, 1, 47599, 3709, 1, 1, 24109, 386987, 3733, 389479, 1, 55997, 3511, 1, 1, 1, 49783, 399527, 1, 3023, 1, 31123, 25367, 31319, 2687, 1, 1, 24251, 25847, 3877, 3251, 417419, 7477, 2069, 4051, 24859, 1, 425207, 1, 8731, 1, 1801, 1861, 1, 1597, 2609, 1951, 4817, 54959, 33923, 55291, 443659, 1, 63761, 1, 449003, 1373, 23773, 56629, 454379, 1, 1, 1, 7793, 1, 1459, 2521, 1621, 2083, 27527, 29333, 16231, 59009, 1, 1, 5233, 1571, 478967, 1, 1549, 1, 3643, 8677, 487307, 1, 490103, 1, 1, 1, 3079, 62141, 17191, 31247, 501367, 1, 1, 9029, 1, 63559, 1, 1, 39443, 4591, 1, 64633, 3181, 1, 22669, 1, 74897, 2347, 527179, 1, 530087, 1, 533003, 1, 76561, 33587, 1, 1, 541799, 1, 1, 4877, 42131, 8581, 42359, 69019, 1, 1, 1, 1, 29453, 35069, 1, 1, 1, 1, 568619, 2741, 1, 17911, 574667, 10289, 82529, 4259, 580747, 4549, 1, 36583, 6449, 1, 1973, 4349, 593003, 37159, 1, 1, 85597, 1, 602279, 75479, 1, 1, 86929, 1, 7369, 76649, 614759, 77041, 1913, 5531, 88721, 19457, 624203, 1, 48259, 2711, 1, 1, 1, 1, 1, 79813, 6599, 1637, 3169, 2371, 646519, 1, 649739, 6263, 93281, 11689, 34537, 1, 38791, 1, 28813, 11863, 13591, 83449, 51479, 1823, 1, 21067, 3329, 12097, 1, 85091, 5209, 1, 4933, 1, 98429, 1, 692327, 6673, 695659, 1, 1, 1, 702347, 88003, 5077, 88423, 30829, 1, 7829, 44633, 1, 89689, 37853, 1, 14747, 1, 726007, 22741, 1, 1, 12421, 1, 1, 1, 1, 1, 39113, 5477, 106657, 1, 750059, 2473, 753527, 11801, 58231, 1, 1, 95279, 2267, 23929, 18719, 1, 1, 13799, 1, 5107, 778027, 1, 781559, 1, 5903, 2399, 2017, 3407, 2531, 6203, 1, 7121, 2143, 1, 4751, 1, 62039, 1, 6091, 6343, 813707, 101939, 817319, 1, 5099, 3673, 1, 1, 5081, 1, 831847, 14887, 1, 1, 1, 1, 29063, 5557, 120929, 15149, 3847, 13313, 3457, 1, 857579, 1, 3001, 4691, 865003, 3187, 868727, 1, 5419, 1, 876199, 8443, 1, 1, 883703, 7907, 126781, 5851, 891239, 111641, 9227, 1933, 1, 4021, 69431, 113063, 39409, 113539, 910219, 1, 7681, 1, 1, 114973, 921703, 1, 6959, 1, 929399, 1, 933259, 1, 937127, 1, 1, 1, 944887, 1, 1, 5167, 1, 17047, 956587, 1, 41761, 1, 56731, 17257, 138337, 121291, 1, 1, 3119, 4703, 8237, 17539, 984167, 123269, 1, 3257, 34211, 1, 1, 1,

6. Sequence of the polynom (only primes)

103, 13, 107, 7, 17, 139, 19, 167, 23, 29, 41, 359, 61, 503, 587, 79, 97, 887, 59, 149, 1259, 83, 1399, 131, 223, 1867, 2039, 317, 313, 137, 401, 3019, 419, 3467, 239, 3947, 509, 541, 163, 5003, 643, 311, 797, 179, 5879, 269, 929, 6827, 7159, 229, 7499, 631, 659, 547, 1277, 9319, 571, 619, 10103, 12203, 1553, 12647, 1609, 13099, 431, 1783, 14503, 2141, 673, 983, 2029, 16487, 347, 1031, 18059, 2657, 337, 467, 607, 1249, 1559, 367, 21419, 373, 3229, 409, 1009, 2939, 23819, 24439, 3581, 25703, 3253, 26347, 1667, 1627, 3499, 2179, 3583, 4241, 1877, 1787, 31079, 3929, 32503, 1171, 613, 4957, 35447, 2239, 883, 5281, 2903, 2383, 2963, 1709, 709, 2153, 1291, 41719, 2633, 2551, 421, 44203, 2789, 5791, 491, 751, 6229, 839, 461, 1063, 821, 53003, 53927, 523, 55799, 3517, 56747, 3037, 1039, 3697, 2593, 1879, 4663, 7639, 677, 1109, 62603, 63607, 4007, 1163, 9377, 8269, 857, 1237, 1201, 4231, 647, 10429, 5783, 4733, 641, 4073, 9743, 2707, 9883, 79627, 81899, 83047, 10453, 757, 4493, 86539, 10891, 87719, 977, 2797, 5669, 11489, 13217, 1663, 93739, 5897, 4129, 5659, 13921, 5261, 6287, 14461, 102503, 12893, 103787, 787, 107687, 5737, 15761, 991, 111659, 739, 1093, 3943, 16529, 3637, 701, 6967, 14891, 17117, 1987, 9431, 15413, 9539, 7883, 126839, 1993, 4423, 2647, 1367, 134059, 1019, 17033, 8059, 8609, 1753, 19997, 10883, 773, 1123, 1741, 1297, 907, 18541, 149099, 21521, 152203, 1471, 8093, 19319, 953, 9857, 158507, 19913, 6961, 20113, 1777, 1451, 8681, 20719, 166567, 24029, 10667, 1151, 1657, 853, 2213, 10979, 176503, 178187, 3671, 1697, 5701, 3319, 186727, 188459, 11833, 4639, 1613, 24103, 193703, 1871, 3313, 1483, 24989, 200807, 1327, 2441, 29201, 1523, 1231, 26119, 4283, 941, 1193, 215399, 3863, 1049, 3623, 27743, 1873, 3527, 228587, 4099, 28933, 1789, 3677, 33757, 238247, 1759, 240203, 7537, 10529, 34877, 2357, 246119, 1811, 15569, 35729, 4273, 1091, 254119, 31891, 2837, 32653, 9043, 32909, 2221, 266359, 2089, 6547, 2591, 5563, 274679, 276779, 34729, 39841, 4999, 3557, 21943, 5113, 41057, 12589, 17159, 41981, 15581, 2857, 3593, 1439, 37963, 304807, 38239, 307019, 9629, 6311, 2273, 13933, 322727, 40483, 1601, 1579, 19387, 41341, 4201, 47741, 20959, 336503, 1319, 42499, 6113, 26423, 10771, 12007, 43969, 352939, 22133, 18701, 8783, 2377, 1583, 5683, 364919, 2003, 21751, 28631, 23339, 377099, 47599, 3709, 24109, 386987, 3733, 389479, 55997, 3511, 49783, 399527, 3023, 31123, 25367, 31319, 2687, 24251, 25847, 3877, 3251, 417419, 7477, 2069, 4051, 24859, 425207, 8731, 1801, 1861, 1597, 2609, 1951, 4817, 54959, 33923, 55291, 443659, 63761, 449003, 1373, 23773, 56629, 454379, 7793, 1459, 2521, 1621, 2083, 27527, 29333, 16231, 59009, 5233, 1571, 478967, 1549, 3643, 8677, 487307, 490103, 3079, 62141, 17191, 31247, 501367, 9029, 63559, 39443, 4591, 64633, 3181, 22669, 74897, 2347, 527179, 530087, 533003, 76561, 33587, 541799, 4877, 42131, 8581, 42359, 69019, 29453, 35069, 568619, 2741, 17911, 574667, 10289, 82529, 4259, 580747, 4549, 36583, 6449, 1973, 4349, 593003, 37159, 85597, 602279, 75479, 86929, 7369, 76649, 614759, 77041, 1913, 5531, 88721, 19457, 624203, 48259, 2711, 79813, 6599, 1637, 3169, 2371, 646519, 649739, 6263, 93281, 11689, 34537, 38791, 28813, 11863, 13591, 83449, 51479, 1823, 21067, 3329, 12097, 85091, 5209, 4933, 98429, 692327, 6673, 695659, 702347, 88003, 5077, 88423, 30829, 7829, 44633, 89689, 37853, 14747, 726007, 22741, 12421, 39113, 5477, 106657, 750059, 2473, 753527, 11801, 58231, 95279, 2267, 23929, 18719, 13799, 5107, 778027, 781559, 5903, 2399, 2017, 3407, 2531, 6203, 7121, 2143, 4751, 62039, 6091, 6343, 813707, 101939, 817319, 5099, 3673, 5081, 831847, 14887, 29063, 5557, 120929, 15149, 3847, 13313, 3457, 857579, 3001, 4691, 865003, 3187, 868727, 5419, 876199, 8443, 883703, 7907, 126781, 5851, 891239, 111641, 9227, 1933, 4021, 69431, 113063, 39409, 113539, 910219, 7681, 114973, 921703, 6959, 929399, 933259, 937127, 944887, 5167, 17047, 956587, 41761, 56731, 17257, 138337, 121291, 3119, 4703, 8237, 17539, 984167, 123269, 3257, 34211,

7. Distribution of the primes

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

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)
11010821.0000000.8000001.0000000.0000000.0000000.000000
21005942170.5900000.4200000.5900005.9000005.2500008.500000
31.0006232873360.6230000.2870000.62300010.5593226.83333319.764706
410.0006.4131.9934.4200.6413000.1993000.64130010.2937406.94425113.154762
5100.00065.38415.11550.2690.6538400.1511500.65384010.1955407.58404411.373077
61.000.000660.234122.334537.9000.6602340.1223340.66023410.0977928.09355010.700432
710.000.0006.651.3331.023.0775.628.2560.6651330.1023080.66513310.0742058.36298210.463387
8100.000.00066.870.6278.802.01058.068.6170.6687060.0880200.66870610.0537198.60346810.317337
91.000.000.000671.447.30677.240.355594.206.9510.6714470.0772400.67144710.0409908.77530910.232842
1010.000.000.0006.736.387.535688.288.7746.048.098.7610.6736390.0688290.67363910.0326388.91100010.178438


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)
123301.5000001.5000000.0000000.0000000.0000000.000000
245411.2500001.0000000.2500001.6666671.333333inf
388711.0000000.8750000.1250001.6000001.7500001.000000
416121020.7500000.6250000.1250001.5000001.4285712.000000
532191540.5937500.4687500.1250001.5833331.5000002.000000
664372980.5781250.4531250.1250001.9473681.9333332.000000
71287253190.5625000.4140620.1484381.9459461.8275862.375000
825615393600.5976560.3632810.2343752.1250001.7547173.157895
95123141621520.6132810.3164060.2968752.0522881.7419352.533333
101.0246382903480.6230470.2832030.3398442.0318471.7901232.289474
112.0481.2885237650.6289060.2553710.3735352.0188091.8034482.198276
124.0962.5999251.6740.6345210.2258300.4086912.0178571.7686422.188235
138.1925.2321.6783.5540.6386720.2048340.4338382.0130821.8140542.123059
1416.38410.5603.0577.5030.6445310.1865840.4579472.0183491.8218122.111142
1532.76821.2435.59615.6470.6482850.1707760.4775092.0116481.8305532.085433
1665.53642.72010.32832.3920.6518550.1575930.4942632.0110151.8456042.070173
17131.07285.75219.27266.4800.6542360.1470340.5072022.0073031.8659952.052359
18262.144172.11936.145135.9740.6565820.1378820.5187002.0071721.8755192.045337
19524.288345.23867.831277.4070.6584890.1293770.5291122.0058101.8766362.040147
201.048.576692.481127.832564.6490.6604010.1219100.5384912.0058081.8845662.035453
212.097.1521.388.569240.9491.147.6200.6621210.1148930.5472282.0052091.8848882.032449
224.194.3042.782.652457.0732.325.5790.6634360.1089750.5544612.0039711.8969702.026437
238.388.6085.576.200868.6294.707.5710.6647350.1035490.5611862.0039161.9004162.024258
2416.777.21611.174.2571.655.4589.518.7990.6660380.0986730.5673652.0039201.9058292.022019
2533.554.43222.385.8003.163.39519.222.4050.6671490.0942770.5728722.0033371.9108882.019415
2667.108.86444.840.8146.053.00538.787.8090.6681800.0901970.5779832.0030921.9134522.017844
27134.217.72889.804.49111.605.63778.198.8540.6690960.0864690.5826272.0027401.9173352.016068
28268.435.456179.843.74222.292.381157.551.3610.6699700.0830460.5869252.0026141.9208232.014753
29536.870.912360.112.54142.888.354317.224.1870.6707620.0798860.5908762.0023631.9239022.013465
301.073.741.824721.040.54182.621.574638.418.9670.6715210.0769470.5945742.0022641.9264342.012516
312.147.483.6481.443.593.512159.401.5111.284.192.0010.6722260.0742270.5979982.0020981.9292962.011519
324.294.967.2962.890.030.414307.917.3572.582.113.0570.6728880.0716930.6011952.0019701.9317092.010691
338.589.934.5925.785.375.743595.517.6955.189.858.0480.6735060.0693270.6041792.0018391.9340182.009927
3417.179.869.18411.580.801.5661.152.968.48210.427.833.0840.6740910.0671120.6069802.0017371.9360782.009271
3534.359.738.36823.180.504.4812.234.577.53820.945.926.9430.6746410.0650350.6096072.0016321.9381082.008656
3668.719.476.73646.396.616.5034.335.126.22042.061.490.2830.6751600.0630840.6120752.0015361.9400202.008099


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
123210111
244310112
387520313
41610551315
53215691518
664291118212312
7128532330421622
82569344498331240
9512162738919552662
101.0242901311593410142113
112.0485232312927118276194
124.096925412513134318128345
138.1921.678746932236586225631
1416.3843.0571.3681.6894281.0944071.128
1532.7685.5962.5143.0827942.0057492.048
1665.53610.3284.6365.6921.4133.7481.3683.799
17131.07219.2728.69010.5822.5876.9912.5837.111
18262.14436.14516.33519.8104.82413.1524.81613.353
19524.28867.83130.47737.3548.93324.9078.97925.012
201.048.576127.83257.44470.38816.86647.13216.83646.998
212.097.152240.949108.107132.84231.69888.95031.68988.612
224.194.304457.073205.394251.67960.022168.40060.142168.509
238.388.608868.629389.954478.675113.727320.412113.991320.499
2416.777.2161.655.458742.602912.856216.571610.801216.714611.372
2533.554.4323.163.3951.418.1941.745.201413.2841.167.834413.3261.168.951
2667.108.8646.053.0052.712.6843.340.321789.5992.236.436789.0922.237.878
27134.217.72811.605.6375.199.4436.406.1941.511.1964.291.3841.510.5284.292.529
28268.435.45622.292.3819.987.42912.304.9522.897.4788.246.4722.898.4258.250.006
29536.870.91242.888.35419.210.32323.678.0315.565.67415.875.6955.569.13515.877.850
301.073.741.82482.621.57436.995.74845.625.82610.709.24230.601.47910.711.10530.599.748
312.147.483.648159.401.51171.364.78388.036.72820.637.00259.064.76520.635.33759.064.407
324.294.967.296307.917.357137.821.822170.095.53539.812.748114.148.24039.809.232114.147.137
338.589.934.592595.517.695266.486.499329.031.19676.905.560220.848.70676.908.612220.854.817
3417.179.869.1841.152.968.482515.823.349637.145.133148.742.300427.731.892148.755.202427.739.088
3534.359.738.3682.234.577.538999.508.9261.235.068.612288.005.054829.277.408288.008.865829.286.211
3668.719.476.7364.335.126.2201.938.676.1162.396.450.104558.243.7621.609.324.654558.242.9571.609.314.847


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
120000000
241011000
381011000
4162021010
5324222020
6648264130
7128196136472
825660283215151911
9512152728044334233
101.02434817417498739087
112.048765372393199178200188
124.0961.674805869431383447413
138.1923.5541.7581.796935849910860
1416.3847.5033.7283.7751.9641.8081.9571.774
1532.76815.6477.7227.9254.0593.7374.1193.732
1665.53632.39216.07516.3178.3657.7448.4567.827
17131.07266.48033.01433.46617.28015.94617.20716.047
18262.144135.97467.30468.67035.03632.78635.13233.020
19524.288277.407137.800139.60771.37067.29771.23367.507
201.048.576564.649280.333284.316145.023137.270144.918137.438
212.097.1521.147.620570.034577.586293.846279.512294.339279.923
224.194.3042.325.5791.156.0811.169.498593.535567.727595.895568.422
238.388.6084.707.5712.340.6232.366.9481.200.7711.151.2951.203.6751.151.830
2416.777.2169.518.7994.735.6114.783.1882.426.7142.330.4292.429.7522.331.904
2533.554.43219.222.4059.566.4359.655.9704.897.3024.712.6564.899.0494.713.398
2667.108.86438.787.80919.306.95119.480.8589.874.8659.518.5069.873.6489.520.790
27134.217.72878.198.85438.937.09139.261.76319.890.65219.207.97919.890.28919.209.934
28268.435.456157.551.36178.460.17979.091.18240.036.76538.739.72940.041.33038.733.537
29536.870.912317.224.187157.999.093159.225.09480.549.87878.062.55480.562.90878.048.847
301.073.741.824638.418.967318.043.118320.375.849162.005.262157.197.823162.020.454157.195.428
312.147.483.6481.284.192.001639.844.213644.347.788325.700.694316.397.925325.711.948316.381.434
324.294.967.2962.582.113.0571.286.689.4361.295.423.621654.511.489636.544.056654.524.754636.532.758
338.589.934.5925.189.858.0482.586.488.7042.603.369.3441.314.845.9121.280.110.4491.314.846.5091.280.055.178
3417.179.869.18410.427.833.0845.197.592.0865.230.240.9982.640.546.1292.573.395.4762.640.528.2522.573.363.227
3534.359.738.36820.945.926.94310.441.374.63710.504.552.3065.301.528.1585.171.393.8825.301.616.4125.171.388.491
3668.719.476.73642.061.490.28320.969.407.54721.092.082.73610.641.458.34910.389.245.41910.641.634.48610.389.152.029


8. Check for existing Integer Sequences by OEIS

Found in Database : 103, 13, 107, 7, 17, 1, 139, 19, 167, 23, 29, 1, 1, 1, 1, 41, 359, 1, 61, 1,
Found in Database : 103, 13, 107, 7, 17, 139, 19, 167, 23, 29, 41, 359, 61, 503, 587, 79, 97, 887, 59, 149, 1259, 83, 1399,
Found in Database : 7, 13, 17, 19, 23, 29, 41, 59, 61, 79, 83, 97, 103, 107, 131, 137, 139, 149,