Inhaltsverzeichnis

Development of
Algorithmic Constructions

20:23:12
Deutsch
18.Apr 2024

Polynom = x^2+32x+5

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) = 5 = 5
f(1) = 19 = 19
f(2) = 73 = 73
f(3) = 55 = 5*11
f(4) = 149 = 149
f(5) = 95 = 5*19
f(6) = 233 = 233
f(7) = 139 = 139
f(8) = 325 = 5*5*13
f(9) = 187 = 11*17
f(10) = 425 = 5*5*17
f(11) = 239 = 239
f(12) = 533 = 13*41
f(13) = 295 = 5*59
f(14) = 649 = 11*59
f(15) = 355 = 5*71
f(16) = 773 = 773
f(17) = 419 = 419
f(18) = 905 = 5*181
f(19) = 487 = 487
f(20) = 1045 = 5*11*19
f(21) = 559 = 13*43
f(22) = 1193 = 1193
f(23) = 635 = 5*127
f(24) = 1349 = 19*71
f(25) = 715 = 5*11*13
f(26) = 1513 = 17*89
f(27) = 799 = 17*47
f(28) = 1685 = 5*337
f(29) = 887 = 887
f(30) = 1865 = 5*373
f(31) = 979 = 11*89
f(32) = 2053 = 2053
f(33) = 1075 = 5*5*43
f(34) = 2249 = 13*173
f(35) = 1175 = 5*5*47
f(36) = 2453 = 11*223
f(37) = 1279 = 1279
f(38) = 2665 = 5*13*41
f(39) = 1387 = 19*73
f(40) = 2885 = 5*577
f(41) = 1499 = 1499
f(42) = 3113 = 11*283
f(43) = 1615 = 5*17*19
f(44) = 3349 = 17*197
f(45) = 1735 = 5*347
f(46) = 3593 = 3593
f(47) = 1859 = 11*13*13
f(48) = 3845 = 5*769
f(49) = 1987 = 1987
f(50) = 4105 = 5*821
f(51) = 2119 = 13*163
f(52) = 4373 = 4373
f(53) = 2255 = 5*11*41
f(54) = 4649 = 4649
f(55) = 2395 = 5*479
f(56) = 4933 = 4933
f(57) = 2539 = 2539
f(58) = 5225 = 5*5*11*19
f(59) = 2687 = 2687
f(60) = 5525 = 5*5*13*17
f(61) = 2839 = 17*167
f(62) = 5833 = 19*307
f(63) = 2995 = 5*599
f(64) = 6149 = 11*13*43
f(65) = 3155 = 5*631
f(66) = 6473 = 6473
f(67) = 3319 = 3319
f(68) = 6805 = 5*1361
f(69) = 3487 = 11*317
f(70) = 7145 = 5*1429
f(71) = 3659 = 3659
f(72) = 7493 = 59*127
f(73) = 3835 = 5*13*59
f(74) = 7849 = 47*167
f(75) = 4015 = 5*11*73
f(76) = 8213 = 43*191
f(77) = 4199 = 13*17*19
f(78) = 8585 = 5*17*101
f(79) = 4387 = 41*107
f(80) = 8965 = 5*11*163
f(81) = 4579 = 19*241
f(82) = 9353 = 47*199
f(83) = 4775 = 5*5*191
f(84) = 9749 = 9749
f(85) = 4975 = 5*5*199
f(86) = 10153 = 11*13*71
f(87) = 5179 = 5179
f(88) = 10565 = 5*2113
f(89) = 5387 = 5387
f(90) = 10985 = 5*13*13*13
f(91) = 5599 = 11*509
f(92) = 11413 = 101*113
f(93) = 5815 = 5*1163
f(94) = 11849 = 17*17*41
f(95) = 6035 = 5*17*71
f(96) = 12293 = 19*647
f(97) = 6259 = 11*569
f(98) = 12745 = 5*2549
f(99) = 6487 = 13*499
f(100) = 13205 = 5*19*139

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+32x+5

f(0)=5
f(1)=19
f(2)=73
f(3)=11
f(4)=149
f(5)=1
f(6)=233
f(7)=139
f(8)=13
f(9)=17
f(10)=1
f(11)=239
f(12)=41
f(13)=59
f(14)=1
f(15)=71
f(16)=773
f(17)=419
f(18)=181
f(19)=487
f(20)=1
f(21)=43
f(22)=1193
f(23)=127
f(24)=1
f(25)=1
f(26)=89
f(27)=47
f(28)=337
f(29)=887
f(30)=373
f(31)=1
f(32)=2053
f(33)=1
f(34)=173
f(35)=1
f(36)=223
f(37)=1279
f(38)=1
f(39)=1
f(40)=577
f(41)=1499
f(42)=283
f(43)=1
f(44)=197
f(45)=347
f(46)=3593
f(47)=1
f(48)=769
f(49)=1987
f(50)=821
f(51)=163
f(52)=4373
f(53)=1
f(54)=4649
f(55)=479
f(56)=4933
f(57)=2539
f(58)=1
f(59)=2687
f(60)=1
f(61)=167
f(62)=307
f(63)=599
f(64)=1
f(65)=631
f(66)=6473
f(67)=3319
f(68)=1361
f(69)=317
f(70)=1429
f(71)=3659
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=191
f(77)=1
f(78)=101
f(79)=107
f(80)=1
f(81)=241
f(82)=199
f(83)=1
f(84)=9749
f(85)=1
f(86)=1
f(87)=5179
f(88)=2113
f(89)=5387
f(90)=1
f(91)=509
f(92)=113
f(93)=1163
f(94)=1
f(95)=1
f(96)=647
f(97)=569
f(98)=2549
f(99)=499

b) Substitution of the polynom
The polynom f(x)=x^2+32x+5 could be written as f(y)= y^2-251 with x=y-16

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+16
f'(x)>2x+31

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

5, 19, 73, 11, 149, 1, 233, 139, 13, 17, 1, 239, 41, 59, 1, 71, 773, 419, 181, 487, 1, 43, 1193, 127, 1, 1, 89, 47, 337, 887, 373, 1, 2053, 1, 173, 1, 223, 1279, 1, 1, 577, 1499, 283, 1, 197, 347, 3593, 1, 769, 1987, 821, 163, 4373, 1, 4649, 479, 4933, 2539, 1, 2687, 1, 167, 307, 599, 1, 631, 6473, 3319, 1361, 317, 1429, 3659, 1, 1, 1, 1, 191, 1, 101, 107, 1, 241, 199, 1, 9749, 1, 1, 5179, 2113, 5387, 1, 509, 113, 1163, 1, 1, 647, 569, 2549, 499, 1, 6719, 1, 1, 14149, 1439, 14633, 1, 1, 7687, 1, 467, 1, 1, 16649, 1, 1321, 8719, 3541, 1, 1, 1, 18793, 1907, 1759, 151, 19913, 10099, 1, 1, 383, 1, 367, 439, 1171, 1, 22853, 11579, 1, 11887, 4817, 1109, 1901, 2503, 25349, 1, 1, 13159, 1, 13487, 1, 1063, 2543, 1, 28649, 1, 29333, 1, 1201, 15187, 1229, 379, 1, 1, 2473, 3251, 463, 16619, 1, 16987, 6869, 17359, 1847, 3547, 3259, 3623, 1, 1423, 7477, 1, 449, 1483, 38953, 787, 39749, 1, 1, 20479, 8273, 20887, 1, 1, 43013, 1, 3373, 1, 1, 1327, 9109, 1, 9281, 2129, 1153, 1, 541, 1, 49033, 1, 1997, 1, 1, 25639, 4703, 1, 1, 1, 1, 659, 991, 27487, 853, 1, 56393, 1, 57349, 5783, 58313, 29399, 1, 1, 709, 1787, 61253, 1, 5659, 251, 1471, 1, 12853, 1, 1187, 1, 5101, 1, 67349, 617, 5261, 2027, 1, 593, 1, 3229, 3767, 7211, 72649, 563, 6703, 37139, 1, 1, 3037, 38239, 1, 7759, 4597, 1, 79273, 1, 1237, 40487, 1, 2161, 6361, 757, 1, 8443, 1, 1, 1567, 1009, 1, 1, 5209, 1783, 1, 1, 4787, 45779, 18433, 4217, 983, 1093, 94613, 1, 1, 877, 643, 48859, 1, 1, 1811, 50119, 677, 10151, 102149, 1, 9403, 4003, 1, 1, 4241, 1, 1, 10799, 108649, 1, 6469, 1, 1, 55987, 1733, 56659, 1, 11467, 1, 1, 919, 58699, 1, 59387, 23893, 823, 7109, 1, 2843, 2459, 123653, 4783, 25013, 5717, 1, 63599, 127913, 1, 1069, 13007, 10061, 3461, 26449, 3911, 1, 67219, 135173, 13591, 136649, 1249, 2939, 69439, 1117, 5399, 1129, 6449, 7507, 1103, 3067, 1, 1, 1, 1, 1, 1, 74759, 1051, 15107, 151849, 15263, 11801, 1, 1, 1097, 1, 1, 1777, 1, 9397, 1, 1, 911, 2963, 6299, 32917, 82699, 1, 16703, 15259, 1, 169493, 85159, 2633, 7817, 1, 5107, 13421, 1, 1, 1609, 1091, 2179, 1, 90187, 1, 1, 182933, 18379, 184649, 1427, 16943, 5507, 2213, 4973, 883, 8669, 4673, 1013, 1, 19423, 3307, 1, 1, 98887, 39733, 1, 18223, 4027, 11897, 1, 1, 7883, 1, 103387, 1, 1, 11027, 1913, 211349, 21227, 213193, 1, 1049, 9817, 1, 1, 1, 1, 1543, 22159, 222533, 5881, 1, 112687, 1, 5981, 228233, 1, 230149, 1, 232073, 8963, 2753, 6911, 47189, 1, 1021, 23887, 239849, 24083, 1, 1663, 48757, 122387, 1, 123379, 1, 1, 249749, 1, 1, 11489, 50753, 1, 51157, 128399, 1, 1, 6043, 1373, 2593, 2797, 4799, 1, 53201, 133519, 1213, 1583, 1, 1, 1, 1277, 10973, 12517, 11057, 138739, 3923, 1, 14771, 1, 282773, 1, 2999, 1, 1, 2029, 289193, 29027, 291349, 29243, 26683, 147299, 4549, 148387, 1453, 1, 23081, 1, 1, 6067, 17909, 1, 61333, 153887, 1, 11923, 28283, 31223, 1, 1, 315593, 158359, 5779, 3709, 1, 160619, 1, 1, 1, 32579, 17207, 164039, 1, 15017, 1, 1, 1999, 1, 30559, 1, 338473, 13063, 68161, 1, 1, 1, 1, 34667, 347849, 1, 350213, 175699, 1, 176887, 1, 16189, 357353, 1, 27673, 7219, 1, 10687, 4289, 182887, 3863, 3917, 1, 2851, 19571, 37307, 374293, 1, 1, 4021, 1, 1, 381673, 1, 1, 2267, 29741, 193939, 1, 10273, 1, 196439, 9613, 2081, 1, 39791, 399173, 1, 80341, 1409, 80849, 11927, 23929, 1, 409349, 3733, 2381, 5039, 4363, 1, 7583, 209179, 1699, 8419, 422249, 1, 2971, 213079, 1, 12611, 86017, 19609, 432713, 43403, 435349, 3359, 9319, 1, 88129, 1, 88661, 11701, 40543, 1, 1, 2647, 1, 2003, 1, 3119, 18269, 1, 1, 1, 462149, 46351, 1, 2063, 2281, 21317, 4951, 18143, 1637, 2791, 1, 3671, 1559, 239999, 2239, 1, 8803, 242779, 2447, 9767, 1, 1, 1, 246979, 7621, 1, 5861, 22709, 501013, 1, 12289, 50527, 1, 19543, 1, 255487, 102481, 19763, 1, 1, 27271, 1, 30649, 1, 1, 1, 1621, 264139, 2689, 1, 40973, 53411, 535573, 268519, 9791, 269987, 108289, 1, 9227, 1, 2927, 1, 3181, 1, 1, 1, 111253, 278879, 1, 2243, 7919, 1, 43481, 1, 1, 1, 1, 1, 1, 1, 577349, 1, 2777, 290959, 116689, 1, 2861, 26729, 13711, 4547, 592649, 59419, 595733, 1597, 1, 300187, 24077, 15881, 4231, 60659, 14143, 3209, 3617, 306419, 11171, 4219, 1, 309559, 620693, 5657, 36697, 1, 1, 314299, 126037, 1, 1, 5381, 636553, 12763, 3061, 1, 642953, 6857, 9941, 1, 11807, 1, 2953, 65423, 655849, 1, 9283, 330359, 132469, 1, 133121, 2333, 668873, 3529, 2789, 1, 61403, 7873, 1, 20011, 27281, 341839, 62303, 68699, 52973, 69031, 691973, 1, 1, 348487, 139729, 350159, 36947, 6397, 3163, 4159, 1, 1, 1, 356887, 143093, 27583, 1, 14411, 1, 14479, 725653, 19141, 3391, 1, 1, 1, 1, 4339, 56873, 6737, 1, 1949, 149249, 373987, 1, 1, 7039, 5807, 756649, 1, 3637, 29303, 1, 22511, 1, 34949, 1, 77239, 774149, 77591, 1, 1, 156241, 391487, 12073, 1, 71663, 1, 791849, 4177, 1, 23447, 1, 1, 1, 1, 806153, 1, 809749, 16231, 8053, 407579, 163393, 37217, 164117, 1, 4877, 1, 1, 1, 1, 416659, 1, 1, 1, 420319, 842473, 84431, 846149, 1, 849833, 425839, 34141, 1, 2017, 2297, 6779, 1, 21089, 1, 1, 22901, 13417, 1, 3727, 4931, 6151, 1, 20543, 88523, 887113, 2377, 1, 446387, 178933, 34483, 47287, 1, 6491, 1, 1, 1, 1, 1, 4457, 457799, 917513, 91943, 1, 5431, 925193, 6529, 14293, 3847, 186581, 1, 936773, 93871, 940649, 1, 944533, 1, 1, 4441, 3463, 1, 56249, 95819, 2767, 96211, 87643, 1, 193601, 484987, 1, 44269, 5641, 97787, 3967, 2089, 983813, 44809, 11621, 1, 1, 12119, 90523, 1, 999749, 4007, 1003753, 1, 1, 26573, 202357, 506899, 1015813, 1, 1019849, 6011, 1, 512959, 205589, 46817,

6. Sequence of the polynom (only primes)

5, 19, 73, 11, 149, 233, 139, 13, 17, 239, 41, 59, 71, 773, 419, 181, 487, 43, 1193, 127, 89, 47, 337, 887, 373, 2053, 173, 223, 1279, 577, 1499, 283, 197, 347, 3593, 769, 1987, 821, 163, 4373, 4649, 479, 4933, 2539, 2687, 167, 307, 599, 631, 6473, 3319, 1361, 317, 1429, 3659, 191, 101, 107, 241, 199, 9749, 5179, 2113, 5387, 509, 113, 1163, 647, 569, 2549, 499, 6719, 14149, 1439, 14633, 7687, 467, 16649, 1321, 8719, 3541, 18793, 1907, 1759, 151, 19913, 10099, 383, 367, 439, 1171, 22853, 11579, 11887, 4817, 1109, 1901, 2503, 25349, 13159, 13487, 1063, 2543, 28649, 29333, 1201, 15187, 1229, 379, 2473, 3251, 463, 16619, 16987, 6869, 17359, 1847, 3547, 3259, 3623, 1423, 7477, 449, 1483, 38953, 787, 39749, 20479, 8273, 20887, 43013, 3373, 1327, 9109, 9281, 2129, 1153, 541, 49033, 1997, 25639, 4703, 659, 991, 27487, 853, 56393, 57349, 5783, 58313, 29399, 709, 1787, 61253, 5659, 251, 1471, 12853, 1187, 5101, 67349, 617, 5261, 2027, 593, 3229, 3767, 7211, 72649, 563, 6703, 37139, 3037, 38239, 7759, 4597, 79273, 1237, 40487, 2161, 6361, 757, 8443, 1567, 1009, 5209, 1783, 4787, 45779, 18433, 4217, 983, 1093, 94613, 877, 643, 48859, 1811, 50119, 677, 10151, 102149, 9403, 4003, 4241, 10799, 108649, 6469, 55987, 1733, 56659, 11467, 919, 58699, 59387, 23893, 823, 7109, 2843, 2459, 123653, 4783, 25013, 5717, 63599, 127913, 1069, 13007, 10061, 3461, 26449, 3911, 67219, 135173, 13591, 136649, 1249, 2939, 69439, 1117, 5399, 1129, 6449, 7507, 1103, 3067, 74759, 1051, 15107, 151849, 15263, 11801, 1097, 1777, 9397, 911, 2963, 6299, 32917, 82699, 16703, 15259, 169493, 85159, 2633, 7817, 5107, 13421, 1609, 1091, 2179, 90187, 182933, 18379, 184649, 1427, 16943, 5507, 2213, 4973, 883, 8669, 4673, 1013, 19423, 3307, 98887, 39733, 18223, 4027, 11897, 7883, 103387, 11027, 1913, 211349, 21227, 213193, 1049, 9817, 1543, 22159, 222533, 5881, 112687, 5981, 228233, 230149, 232073, 8963, 2753, 6911, 47189, 1021, 23887, 239849, 24083, 1663, 48757, 122387, 123379, 249749, 11489, 50753, 51157, 128399, 6043, 1373, 2593, 2797, 4799, 53201, 133519, 1213, 1583, 1277, 10973, 12517, 11057, 138739, 3923, 14771, 282773, 2999, 2029, 289193, 29027, 291349, 29243, 26683, 147299, 4549, 148387, 1453, 23081, 6067, 17909, 61333, 153887, 11923, 28283, 31223, 315593, 158359, 5779, 3709, 160619, 32579, 17207, 164039, 15017, 1999, 30559, 338473, 13063, 68161, 34667, 347849, 350213, 175699, 176887, 16189, 357353, 27673, 7219, 10687, 4289, 182887, 3863, 3917, 2851, 19571, 37307, 374293, 4021, 381673, 2267, 29741, 193939, 10273, 196439, 9613, 2081, 39791, 399173, 80341, 1409, 80849, 11927, 23929, 409349, 3733, 2381, 5039, 4363, 7583, 209179, 1699, 8419, 422249, 2971, 213079, 12611, 86017, 19609, 432713, 43403, 435349, 3359, 9319, 88129, 88661, 11701, 40543, 2647, 2003, 3119, 18269, 462149, 46351, 2063, 2281, 21317, 4951, 18143, 1637, 2791, 3671, 1559, 239999, 2239, 8803, 242779, 2447, 9767, 246979, 7621, 5861, 22709, 501013, 12289, 50527, 19543, 255487, 102481, 19763, 27271, 30649, 1621, 264139, 2689, 40973, 53411, 535573, 268519, 9791, 269987, 108289, 9227, 2927, 3181, 111253, 278879, 2243, 7919, 43481, 577349, 2777, 290959, 116689, 2861, 26729, 13711, 4547, 592649, 59419, 595733, 1597, 300187, 24077, 15881, 4231, 60659, 14143, 3209, 3617, 306419, 11171, 4219, 309559, 620693, 5657, 36697, 314299, 126037, 5381, 636553, 12763, 3061, 642953, 6857, 9941, 11807, 2953, 65423, 655849, 9283, 330359, 132469, 133121, 2333, 668873, 3529, 2789, 61403, 7873, 20011, 27281, 341839, 62303, 68699, 52973, 69031, 691973, 348487, 139729, 350159, 36947, 6397, 3163, 4159, 356887, 143093, 27583, 14411, 14479, 725653, 19141, 3391, 4339, 56873, 6737, 1949, 149249, 373987, 7039, 5807, 756649, 3637, 29303, 22511, 34949, 77239, 774149, 77591, 156241, 391487, 12073, 71663, 791849, 4177, 23447, 806153, 809749, 16231, 8053, 407579, 163393, 37217, 164117, 4877, 416659, 420319, 842473, 84431, 846149, 849833, 425839, 34141, 2017, 2297, 6779, 21089, 22901, 13417, 3727, 4931, 6151, 20543, 88523, 887113, 2377, 446387, 178933, 34483, 47287, 6491, 4457, 457799, 917513, 91943, 5431, 925193, 6529, 14293, 3847, 186581, 936773, 93871, 940649, 944533, 4441, 3463, 56249, 95819, 2767, 96211, 87643, 193601, 484987, 44269, 5641, 97787, 3967, 2089, 983813, 44809, 11621, 12119, 90523, 999749, 4007, 1003753, 26573, 202357, 506899, 1015813, 1019849, 6011, 512959, 205589, 46817,

7. Distribution of the primes

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

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)
1107610.7000000.6000000.1000000.0000000.0000000.000000
21006528370.6500000.2800000.3700009.2857144.66666737.000000
31.0006551984570.6550000.1980000.45700010.0769237.07142912.351352
410.0006.7331.3735.3600.6733000.1373000.53600010.2793896.93434311.728665
5100.00067.76010.36157.3990.6776000.1036100.57399010.0638657.54624910.708769
61.000.000680.11784.294595.8230.6801170.0842940.59582310.0371468.13570110.380372
710.000.0006.819.350711.6226.107.7280.6819350.0711620.61077310.0267318.44214310.250910
8100.000.00068.325.2546.152.45162.172.8030.6832530.0615250.62172810.0193208.64567310.179367
91.000.000.000684.278.78654.227.951630.050.8350.6842790.0542280.63005110.0150198.81404010.133865
1010.000.000.0006.851.087.823484.815.5076.366.272.3160.6851090.0484820.63662710.0121308.94032510.104380


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
387610.8750000.7500000.1250001.4000001.5000001.000000
41612840.7500000.5000000.2500001.7142861.3333334.000000
5322313100.7187500.4062500.3125001.9166671.6250002.500000
6644522230.7031250.3437500.3593751.9565221.6923082.300000
71288037430.6250000.2890620.3359381.7777781.6818181.869565
825616364990.6367190.2500000.3867192.0375001.7297302.302325
95123331092240.6503910.2128910.4375002.0429451.7031252.262626
101.0246722004720.6562500.1953120.4609382.0180181.8348622.107143
112.0481.3613551.0060.6645510.1733400.4912112.0252981.7750002.131356
124.0962.7326282.1040.6669920.1533200.5136722.0073481.7690142.091451
138.1925.5061.1554.3510.6721190.1409910.5311282.0153731.8391722.067966
1416.38411.0662.0858.9810.6754150.1272580.5481572.0098081.8051952.064123
1532.76822.1583.85718.3010.6762080.1177060.5585022.0023501.8498802.037746
1665.53644.3227.11237.2100.6763000.1085210.5677802.0002711.8439202.033222
17131.07288.87013.20175.6690.6780240.1007160.5773092.0050991.8561592.033566
18262.144177.94224.701153.2410.6787950.0942270.5845682.0022731.8711462.025149
19524.288356.20246.572309.6300.6794010.0888290.5905722.0017871.8854302.020543
201.048.576713.17288.035625.1370.6801340.0839570.5961772.0021561.8902992.018981
212.097.1521.427.807166.7941.261.0130.6808310.0795340.6012982.0020511.8946332.017179
224.194.3042.858.297316.5552.541.7420.6814710.0754730.6059992.0018791.8978802.015635
238.388.6085.719.731603.7285.116.0030.6818450.0719700.6098752.0010971.9071822.012794
2416.777.21611.446.6961.153.44710.293.2490.6822760.0687510.6135252.0012651.9105412.011971
2533.554.43222.906.9332.206.08420.700.8490.6826800.0657460.6169332.0011831.9126012.011109
2667.108.86445.839.6894.227.91541.611.7740.6830650.0630010.6200642.0011271.9164802.010148
27134.217.72891.722.9398.118.32083.604.6190.6833890.0604860.6229032.0009501.9201712.009158
28268.435.456183.533.24015.615.308167.917.9320.6837150.0581720.6255432.0009531.9234652.008477
29536.870.912367.229.67830.076.059337.153.6190.6840190.0560210.6279982.0008891.9260632.007848
301.073.741.824734.769.03658.014.245676.754.7910.6843070.0540300.6302772.0008431.9289182.007259
312.147.483.6481.470.101.313112.043.4261.358.057.8870.6845690.0521740.6323952.0007671.9313092.006721
324.294.967.2962.941.286.357216.653.4092.724.632.9480.6848220.0504440.6343782.0007371.9336562.006272
338.589.934.5925.884.612.357419.378.9825.465.233.3750.6850590.0488220.6362372.0006941.9357142.005861
3417.179.869.18411.773.070.330812.682.70810.960.387.6220.6852830.0473040.6379792.0006541.9378242.005475
3534.359.738.36823.553.412.8661.576.366.98421.977.045.8820.6854950.0458780.6396162.0006181.9397082.005134
3668.719.476.73647.120.652.3653.060.380.54844.060.271.8170.6856960.0445340.6411612.0005871.9414142.004831


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
123211110
244221120
386332220
4168352231
53213583343
664229135665
7128371621101089
825664293516141618
9512109515826282629
101.0242009510551474953
112.04835517518090948190
124.096628309319150168152158
138.1921.155587568273297286299
1416.3842.0851.0481.037506535507537
1532.7683.8571.9151.942946972964975
1665.5367.1123.5763.5361.7171.8371.7501.808
17131.07213.2016.6576.5443.1963.3933.2733.339
18262.14424.70112.43312.2686.0886.2836.0996.231
19524.28846.57223.40523.16711.51211.80711.49911.754
201.048.57688.03544.34143.69421.74222.31321.83022.150
212.097.152166.79483.98382.81141.11942.27241.26342.140
224.194.304316.555159.480157.07577.92680.18478.26180.184
238.388.608603.728303.523300.205148.942152.791149.457152.538
2416.777.2161.153.447579.472573.975284.401291.752285.474291.820
2533.554.4322.206.0841.107.1161.098.968545.107557.624545.722557.631
2667.108.8644.227.9152.121.1732.106.7421.045.5661.067.3611.046.9261.068.062
27134.217.7288.118.3204.073.1714.045.1492.007.8172.048.7132.011.9212.049.869
28268.435.45615.615.3087.833.2367.782.0723.865.8403.938.7223.869.7703.940.976
29536.870.91230.076.05915.085.32114.990.7387.450.5727.584.3977.451.3147.589.776
301.073.741.82458.014.24529.090.74428.923.50114.376.85314.628.83514.377.38714.631.170
312.147.483.648112.043.42656.182.71055.860.71627.771.85628.252.19527.772.17028.247.205
324.294.967.296216.653.409108.622.315108.031.09453.715.86754.610.08853.718.58254.608.872
338.589.934.592419.378.982210.251.612209.127.370104.004.720105.684.412104.007.419105.682.431
3417.179.869.184812.682.708407.395.342405.287.366201.596.418204.744.087201.598.970204.743.233
3534.359.738.3681.576.366.984790.166.413786.200.571391.129.206397.057.017391.124.107397.056.654
3668.719.476.7363.060.380.5481.533.928.5481.526.452.000759.513.007770.702.351759.484.567770.680.623


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
241010100
381010100
4164041201
53210553322
6642311125756
712843202310111012
825699495020252529
951222411011449586156
101.024472232240108112121131
112.0481.006495511231252267256
124.0962.1041.0441.060508536530530
138.1924.3512.1862.1651.0671.1201.0911.073
1416.3848.9814.5234.4582.2092.2642.2712.237
1532.76818.3019.1899.1124.5074.6724.5774.545
1665.53637.21018.57118.6399.2009.4799.2829.249
17131.07275.66937.83637.83318.82719.04018.93318.869
18262.144153.24176.54576.69638.11838.44038.25638.427
19524.288309.630154.572155.05877.46077.47077.08977.611
201.048.576625.137312.086313.051156.255156.283156.153156.446
212.097.1521.261.013630.172630.841315.479315.279314.808315.447
224.194.3042.541.7421.270.7181.271.024635.337635.646635.549635.210
238.388.6085.116.0032.556.6722.559.3311.278.0791.279.7551.277.7921.280.377
2416.777.21610.293.2495.141.3175.151.9322.571.9312.574.3892.571.5462.575.383
2533.554.43220.700.84910.345.47910.355.3705.171.7375.179.5745.171.7775.177.761
2667.108.86441.611.77420.799.99720.811.77710.399.05110.405.94010.398.26510.408.518
27134.217.72883.604.61941.793.91041.810.70920.893.84520.909.50120.890.58720.910.686
28268.435.456167.917.93283.943.44383.974.48941.959.53441.998.14741.959.19342.001.058
29536.870.912337.153.619168.544.631168.608.98884.254.09784.316.15384.257.49784.325.872
301.073.741.824676.754.791338.324.256338.430.535169.120.644169.250.657169.140.186169.243.304
312.147.483.6481.358.057.887678.961.178679.096.709339.379.744339.625.387339.431.267339.621.489
324.294.967.2962.724.632.9481.362.138.5341.362.494.414680.943.519681.372.011680.950.057681.367.361
338.589.934.5925.465.233.3752.732.307.1982.732.926.1771.365.877.0831.366.719.9631.365.920.9451.366.715.384
3417.179.869.18410.960.387.6225.479.585.0075.480.802.6152.739.316.1712.740.866.0172.739.333.5172.740.871.917
3534.359.738.36821.977.045.88210.987.405.85210.989.640.0305.492.800.8105.495.728.0985.492.804.2695.495.712.705
3668.719.476.73644.060.271.81722.027.980.58222.032.291.23511.012.349.75211.017.691.95811.012.437.90211.017.792.205


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 19, 73, 11, 149, 1, 233, 139, 13, 17, 1, 239, 41, 59, 1, 71, 773, 419, 181, 487,
Found in Database : 5, 19, 73, 11, 149, 233, 139, 13, 17, 239, 41, 59, 71, 773, 419, 181, 487, 43, 1193, 127, 89, 47, 337, 887, 373, 2053, 173, 223, 1279,
Found in Database : 5, 11, 13, 17, 19, 41, 43, 47, 59, 71, 73, 89, 101, 107, 113, 127, 139, 149,