Inhaltsverzeichnis

Development of
Algorithmic Constructions

17:50:38
Deutsch
20.Apr 2024

Polynom = x^2-15x-7

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) = 7 = 7
f(1) = 21 = 3*7
f(2) = 33 = 3*11
f(3) = 43 = 43
f(4) = 51 = 3*17
f(5) = 57 = 3*19
f(6) = 61 = 61
f(7) = 63 = 3*3*7
f(8) = 63 = 3*3*7
f(9) = 61 = 61
f(10) = 57 = 3*19
f(11) = 51 = 3*17
f(12) = 43 = 43
f(13) = 33 = 3*11
f(14) = 21 = 3*7
f(15) = 7 = 7
f(16) = 9 = 3*3
f(17) = 27 = 3*3*3
f(18) = 47 = 47
f(19) = 69 = 3*23
f(20) = 93 = 3*31
f(21) = 119 = 7*17
f(22) = 147 = 3*7*7
f(23) = 177 = 3*59
f(24) = 209 = 11*19
f(25) = 243 = 3*3*3*3*3
f(26) = 279 = 3*3*31
f(27) = 317 = 317
f(28) = 357 = 3*7*17
f(29) = 399 = 3*7*19
f(30) = 443 = 443
f(31) = 489 = 3*163
f(32) = 537 = 3*179
f(33) = 587 = 587
f(34) = 639 = 3*3*71
f(35) = 693 = 3*3*7*11
f(36) = 749 = 7*107
f(37) = 807 = 3*269
f(38) = 867 = 3*17*17
f(39) = 929 = 929
f(40) = 993 = 3*331
f(41) = 1059 = 3*353
f(42) = 1127 = 7*7*23
f(43) = 1197 = 3*3*7*19
f(44) = 1269 = 3*3*3*47
f(45) = 1343 = 17*79
f(46) = 1419 = 3*11*43
f(47) = 1497 = 3*499
f(48) = 1577 = 19*83
f(49) = 1659 = 3*7*79
f(50) = 1743 = 3*7*83
f(51) = 1829 = 31*59
f(52) = 1917 = 3*3*3*71
f(53) = 2007 = 3*3*223
f(54) = 2099 = 2099
f(55) = 2193 = 3*17*43
f(56) = 2289 = 3*7*109
f(57) = 2387 = 7*11*31
f(58) = 2487 = 3*829
f(59) = 2589 = 3*863
f(60) = 2693 = 2693
f(61) = 2799 = 3*3*311
f(62) = 2907 = 3*3*17*19
f(63) = 3017 = 7*431
f(64) = 3129 = 3*7*149
f(65) = 3243 = 3*23*47
f(66) = 3359 = 3359
f(67) = 3477 = 3*19*61
f(68) = 3597 = 3*11*109
f(69) = 3719 = 3719
f(70) = 3843 = 3*3*7*61
f(71) = 3969 = 3*3*3*3*7*7
f(72) = 4097 = 17*241
f(73) = 4227 = 3*1409
f(74) = 4359 = 3*1453
f(75) = 4493 = 4493
f(76) = 4629 = 3*1543
f(77) = 4767 = 3*7*227
f(78) = 4907 = 7*701
f(79) = 5049 = 3*3*3*11*17
f(80) = 5193 = 3*3*577
f(81) = 5339 = 19*281
f(82) = 5487 = 3*31*59
f(83) = 5637 = 3*1879
f(84) = 5789 = 7*827
f(85) = 5943 = 3*7*283
f(86) = 6099 = 3*19*107
f(87) = 6257 = 6257
f(88) = 6417 = 3*3*23*31
f(89) = 6579 = 3*3*17*43
f(90) = 6743 = 11*613
f(91) = 6909 = 3*7*7*47
f(92) = 7077 = 3*7*337
f(93) = 7247 = 7247
f(94) = 7419 = 3*2473
f(95) = 7593 = 3*2531
f(96) = 7769 = 17*457
f(97) = 7947 = 3*3*883
f(98) = 8127 = 3*3*3*7*43
f(99) = 8309 = 7*1187
f(100) = 8493 = 3*19*149

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-15x-7

f(0)=7
f(1)=3
f(2)=11
f(3)=43
f(4)=17
f(5)=19
f(6)=61
f(7)=1
f(8)=1
f(9)=1
f(10)=1
f(11)=1
f(12)=1
f(13)=1
f(14)=1
f(15)=1
f(16)=1
f(17)=1
f(18)=47
f(19)=23
f(20)=31
f(21)=1
f(22)=1
f(23)=59
f(24)=1
f(25)=1
f(26)=1
f(27)=317
f(28)=1
f(29)=1
f(30)=443
f(31)=163
f(32)=179
f(33)=587
f(34)=71
f(35)=1
f(36)=107
f(37)=269
f(38)=1
f(39)=929
f(40)=331
f(41)=353
f(42)=1
f(43)=1
f(44)=1
f(45)=79
f(46)=1
f(47)=499
f(48)=83
f(49)=1
f(50)=1
f(51)=1
f(52)=1
f(53)=223
f(54)=2099
f(55)=1
f(56)=109
f(57)=1
f(58)=829
f(59)=863
f(60)=2693
f(61)=311
f(62)=1
f(63)=431
f(64)=149
f(65)=1
f(66)=3359
f(67)=1
f(68)=1
f(69)=3719
f(70)=1
f(71)=1
f(72)=241
f(73)=1409
f(74)=1453
f(75)=4493
f(76)=1543
f(77)=227
f(78)=701
f(79)=1
f(80)=577
f(81)=281
f(82)=1
f(83)=1879
f(84)=827
f(85)=283
f(86)=1
f(87)=6257
f(88)=1
f(89)=1
f(90)=613
f(91)=1
f(92)=337
f(93)=7247
f(94)=2473
f(95)=2531
f(96)=457
f(97)=883
f(98)=1
f(99)=1187

b) Substitution of the polynom
The polynom f(x)=x^2-15x-7 could be written as f(y)= y^2-63.25 with x=y+7.5

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-7.5
f'(x)>2x-16 with x > 8

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

7, 3, 11, 43, 17, 19, 61, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 47, 23, 31, 1, 1, 59, 1, 1, 1, 317, 1, 1, 443, 163, 179, 587, 71, 1, 107, 269, 1, 929, 331, 353, 1, 1, 1, 79, 1, 499, 83, 1, 1, 1, 1, 223, 2099, 1, 109, 1, 829, 863, 2693, 311, 1, 431, 149, 1, 3359, 1, 1, 3719, 1, 1, 241, 1409, 1453, 4493, 1543, 227, 701, 1, 577, 281, 1, 1879, 827, 283, 1, 6257, 1, 1, 613, 1, 337, 7247, 2473, 2531, 457, 883, 1, 1187, 1, 263, 8867, 3019, 3083, 1, 1, 1093, 10037, 3413, 1, 463, 1, 1, 11279, 1277, 1301, 11927, 4049, 1, 257, 4273, 4349, 1, 1, 509, 1997, 677, 1, 14699, 293, 1, 359, 1, 1, 16193, 5483, 5569, 1, 5743, 1, 1, 2003, 1, 599, 571, 6373, 1, 937, 6653, 653, 2281, 1, 21107, 1019, 1033, 1999, 1, 7529, 487, 859, 373, 1, 8039, 479, 1, 8353, 769, 3671, 1, 2927, 26669, 8999, 9109, 1627, 1, 1, 1, 1, 1087, 1291, 1, 1447, 4391, 1, 1, 31799, 397, 3613, 1, 1583, 659, 557, 1, 1, 1847, 563, 569, 2131, 12203, 1, 37379, 12589, 1, 5507, 4327, 1, 503, 787, 13513, 5849, 1, 449, 1, 1, 1, 523, 2087, 1, 2351, 15031, 15173, 4177, 5153, 743, 1, 691, 1, 823, 16333, 16481, 7127, 1, 1, 51239, 17231, 17383, 1697, 1, 2549, 53993, 2017, 1, 1787, 1693, 2683, 8117, 1, 19259, 1, 1, 6581, 1, 1, 20233, 5563, 20563, 1091, 62687, 1, 1, 1493, 21569, 21739, 65729, 1, 1, 1373, 1, 7591, 1601, 1217, 1013, 10061, 1, 23831, 1, 733, 8123, 1567, 3533, 3559, 953, 1487, 25463, 76943, 1, 1, 1021, 26393, 1399, 80309, 26959, 1597, 11717, 1, 9241, 1009, 28109, 1, 1, 4099, 4127, 87257, 1, 1, 1, 29879, 4297, 683, 1, 1, 92657, 1, 1, 13499, 647, 1877, 1, 32323, 32531, 8929, 1, 1579, 100109, 33581, 719, 1, 1801, 4919, 1, 11621, 1063, 5573, 2089, 35731, 1, 5167, 36389, 109829, 12277, 1, 111827, 1, 1, 113843, 1, 1, 115877, 1439, 1861, 991, 2081, 39769, 10909, 40231, 941, 1, 1949, 13721, 124193, 1, 1, 126317, 1, 1, 6761, 1, 1, 130619, 43781, 1, 1, 947, 44753, 2213, 1, 1, 1153, 6569, 1, 139439, 1, 1, 141689, 1, 2273, 1, 48239, 1, 1, 49003, 1, 21221, 1, 1, 150869, 50549, 1, 1, 7333, 51593, 9151, 5791, 919, 2677, 7559, 1, 1, 1, 2347, 162749, 1069, 2609, 3371, 55331, 55603, 167627, 56149, 3319, 1, 2713, 6361, 1, 57803, 1, 175079, 8377, 1, 1, 2203, 1811, 180137, 1, 1237, 26099, 1, 61469, 185267, 20681, 1, 1, 1, 63199, 2411, 63781, 3769, 10163, 3079, 1031, 195743, 65543, 65839, 1061, 2143, 9533, 1249, 7481, 22543, 203789, 1, 3607, 29501, 1, 1, 2521, 1229, 1, 211997, 10139, 1, 1, 71899, 1, 217559, 2207, 1, 31481, 1039, 3221, 1, 74713, 75029, 1, 1201, 1, 20809, 4507, 1637, 231779, 11083, 1, 2153, 26183, 1, 4027, 1, 1, 34361, 1, 80831, 243479, 1181, 9091, 1, 11783, 82813, 249437, 7589, 83813, 252443, 1, 1, 255467, 1, 85831, 1, 86509, 1, 1, 1, 1723, 8537, 1, 88903, 1663, 12799, 89939, 6299, 30211, 1, 1, 1871, 13147, 1, 1973, 93083, 14753, 1, 4483, 40499, 8623, 5011, 286697, 95923, 96281, 1, 1, 1, 4129, 98081, 98443, 26947, 1, 1, 1, 1759, 3727, 4967, 101363, 14533, 1, 2383, 9349, 309629, 1, 34651, 44711, 14957, 1, 316343, 1, 6247, 319727, 1, 1, 1, 108089, 3499, 326549, 5749, 2237, 1, 36793, 1, 30313, 111533, 111919, 48131, 1, 113081, 340409, 4217, 38083, 1, 16433, 1499, 1, 1471, 1, 1, 1, 1, 50651, 118583, 2767, 21067, 10889, 2557, 1667, 1, 13487, 365357, 1, 2851, 11903, 1, 1, 1783, 1, 1, 3517, 1, 1, 54287, 127081, 127493, 1459, 42773, 1, 7907, 1, 6841, 23011, 1, 131231, 2423, 1, 1, 398729, 1, 2267, 402527, 1, 19289, 58049, 1, 45433, 9539, 137153, 8093, 1, 19777, 138869, 417899, 1, 2459, 1, 20147, 2887, 2857, 1, 12979, 18679, 47881, 2287, 1, 8527, 145399, 437519, 7699, 4733, 1, 1, 2903, 23447, 3169, 1, 4201, 3067, 1, 5741, 50543, 1, 2447, 152981, 1, 65951, 154339, 8147, 465743, 1, 17351, 67121, 1, 14321, 3181, 158449, 158909, 2671, 1, 1, 1, 1, 161683, 486443, 14783, 23297, 1, 2377, 1, 494849, 1993, 8731, 1, 23833, 1, 45757, 3299, 2083, 507593, 24239, 1, 10891, 171103, 10093, 516179, 1, 1, 74357, 173981, 2957, 1, 5659, 4091, 4447, 8423, 59123, 8747, 1, 178831, 8819, 1511, 1, 7639, 60427, 1, 1549, 1, 1, 7159, 9697, 10867, 555707, 2293, 2699, 1, 3821, 1, 1, 2389, 17203, 8017, 9059, 1, 30197, 1, 192259, 578297, 11369, 1, 83267, 5903, 21701, 587459, 196331, 11579, 1, 1, 1, 596693, 22157, 66643, 54667, 1, 1, 1, 202519, 203039, 32141, 1, 9743, 87911, 12097, 18743, 1, 4409, 2503, 89261, 1, 7753, 1, 3449, 1, 1, 2753, 4337, 639137, 1, 1, 37879, 215183, 30817, 92681, 1, 3061, 59419, 1, 1, 1, 1, 220573, 34913, 221659, 9661, 668243, 1, 1, 673157, 5231, 1, 6221, 7309, 1, 97577, 1, 76261, 40471, 20899, 2917, 98999, 1741, 232109, 14851, 1, 1, 1, 1, 33637, 1, 1, 237143, 713117, 79423, 1, 14657, 239963, 7759, 723287, 241663, 1, 6121, 3863, 1, 15607, 12899, 245653, 738677, 35257, 35339, 32341, 1, 1931, 749027, 250253, 5119, 107747, 4271, 1, 39971, 1, 9419, 9931, 36497, 13477, 769943, 3623, 1, 1, 4111, 1, 3037, 2437, 1, 25349, 15443, 37589, 113021, 4637, 88301, 796493, 266093, 266689, 6029, 1, 1, 18773, 1, 1, 812639, 38783, 1, 48121, 273289, 3467, 1, 1, 1, 1, 8933, 277531, 13679, 1, 1, 1, 1, 8521, 4723, 2591, 16649, 850943, 40609, 40697, 856487, 1, 31859, 1, 1, 41227, 1, 2659, 15287, 8161, 32411, 97441, 1, 2467, 294199, 80407, 6871, 9551, 890129, 14159, 2027, 895799, 15749, 1, 12697, 1, 3919, 1, 1, 1, 1, 304943, 305581, 1, 1, 1, 924419, 3119, 103141, 930197, 1, 2341, 13183, 312643, 313289, 2971, 5519, 1, 1, 5189, 317179, 20287, 1, 319133, 4421, 15259, 35677, 56779, 322403, 1, 1, 1, 1, 977069, 1, 5737, 9187,

6. Sequence of the polynom (only primes)

7, 3, 11, 43, 17, 19, 61, 47, 23, 31, 59, 317, 443, 163, 179, 587, 71, 107, 269, 929, 331, 353, 79, 499, 83, 223, 2099, 109, 829, 863, 2693, 311, 431, 149, 3359, 3719, 241, 1409, 1453, 4493, 1543, 227, 701, 577, 281, 1879, 827, 283, 6257, 613, 337, 7247, 2473, 2531, 457, 883, 1187, 263, 8867, 3019, 3083, 1093, 10037, 3413, 463, 11279, 1277, 1301, 11927, 4049, 257, 4273, 4349, 509, 1997, 677, 14699, 293, 359, 16193, 5483, 5569, 5743, 2003, 599, 571, 6373, 937, 6653, 653, 2281, 21107, 1019, 1033, 1999, 7529, 487, 859, 373, 8039, 479, 8353, 769, 3671, 2927, 26669, 8999, 9109, 1627, 1087, 1291, 1447, 4391, 31799, 397, 3613, 1583, 659, 557, 1847, 563, 569, 2131, 12203, 37379, 12589, 5507, 4327, 503, 787, 13513, 5849, 449, 523, 2087, 2351, 15031, 15173, 4177, 5153, 743, 691, 823, 16333, 16481, 7127, 51239, 17231, 17383, 1697, 2549, 53993, 2017, 1787, 1693, 2683, 8117, 19259, 6581, 20233, 5563, 20563, 1091, 62687, 1493, 21569, 21739, 65729, 1373, 7591, 1601, 1217, 1013, 10061, 23831, 733, 8123, 1567, 3533, 3559, 953, 1487, 25463, 76943, 1021, 26393, 1399, 80309, 26959, 1597, 11717, 9241, 1009, 28109, 4099, 4127, 87257, 29879, 4297, 683, 92657, 13499, 647, 1877, 32323, 32531, 8929, 1579, 100109, 33581, 719, 1801, 4919, 11621, 1063, 5573, 2089, 35731, 5167, 36389, 109829, 12277, 111827, 113843, 115877, 1439, 1861, 991, 2081, 39769, 10909, 40231, 941, 1949, 13721, 124193, 126317, 6761, 130619, 43781, 947, 44753, 2213, 1153, 6569, 139439, 141689, 2273, 48239, 49003, 21221, 150869, 50549, 7333, 51593, 9151, 5791, 919, 2677, 7559, 2347, 162749, 1069, 2609, 3371, 55331, 55603, 167627, 56149, 3319, 2713, 6361, 57803, 175079, 8377, 2203, 1811, 180137, 1237, 26099, 61469, 185267, 20681, 63199, 2411, 63781, 3769, 10163, 3079, 1031, 195743, 65543, 65839, 1061, 2143, 9533, 1249, 7481, 22543, 203789, 3607, 29501, 2521, 1229, 211997, 10139, 71899, 217559, 2207, 31481, 1039, 3221, 74713, 75029, 1201, 20809, 4507, 1637, 231779, 11083, 2153, 26183, 4027, 34361, 80831, 243479, 1181, 9091, 11783, 82813, 249437, 7589, 83813, 252443, 255467, 85831, 86509, 1723, 8537, 88903, 1663, 12799, 89939, 6299, 30211, 1871, 13147, 1973, 93083, 14753, 4483, 40499, 8623, 5011, 286697, 95923, 96281, 4129, 98081, 98443, 26947, 1759, 3727, 4967, 101363, 14533, 2383, 9349, 309629, 34651, 44711, 14957, 316343, 6247, 319727, 108089, 3499, 326549, 5749, 2237, 36793, 30313, 111533, 111919, 48131, 113081, 340409, 4217, 38083, 16433, 1499, 1471, 50651, 118583, 2767, 21067, 10889, 2557, 1667, 13487, 365357, 2851, 11903, 1783, 3517, 54287, 127081, 127493, 1459, 42773, 7907, 6841, 23011, 131231, 2423, 398729, 2267, 402527, 19289, 58049, 45433, 9539, 137153, 8093, 19777, 138869, 417899, 2459, 20147, 2887, 2857, 12979, 18679, 47881, 2287, 8527, 145399, 437519, 7699, 4733, 2903, 23447, 3169, 4201, 3067, 5741, 50543, 2447, 152981, 65951, 154339, 8147, 465743, 17351, 67121, 14321, 3181, 158449, 158909, 2671, 161683, 486443, 14783, 23297, 2377, 494849, 1993, 8731, 23833, 45757, 3299, 2083, 507593, 24239, 10891, 171103, 10093, 516179, 74357, 173981, 2957, 5659, 4091, 4447, 8423, 59123, 8747, 178831, 8819, 1511, 7639, 60427, 1549, 7159, 9697, 10867, 555707, 2293, 2699, 3821, 2389, 17203, 8017, 9059, 30197, 192259, 578297, 11369, 83267, 5903, 21701, 587459, 196331, 11579, 596693, 22157, 66643, 54667, 202519, 203039, 32141, 9743, 87911, 12097, 18743, 4409, 2503, 89261, 7753, 3449, 2753, 4337, 639137, 37879, 215183, 30817, 92681, 3061, 59419, 220573, 34913, 221659, 9661, 668243, 673157, 5231, 6221, 7309, 97577, 76261, 40471, 20899, 2917, 98999, 1741, 232109, 14851, 33637, 237143, 713117, 79423, 14657, 239963, 7759, 723287, 241663, 6121, 3863, 15607, 12899, 245653, 738677, 35257, 35339, 32341, 1931, 749027, 250253, 5119, 107747, 4271, 39971, 9419, 9931, 36497, 13477, 769943, 3623, 4111, 3037, 2437, 25349, 15443, 37589, 113021, 4637, 88301, 796493, 266093, 266689, 6029, 18773, 812639, 38783, 48121, 273289, 3467, 8933, 277531, 13679, 8521, 4723, 2591, 16649, 850943, 40609, 40697, 856487, 31859, 41227, 2659, 15287, 8161, 32411, 97441, 2467, 294199, 80407, 6871, 9551, 890129, 14159, 2027, 895799, 15749, 12697, 3919, 304943, 305581, 924419, 3119, 103141, 930197, 2341, 13183, 312643, 313289, 2971, 5519, 5189, 317179, 20287, 319133, 4421, 15259, 35677, 56779, 322403, 977069, 5737, 9187,

7. Distribution of the primes

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

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)
1107430.7000000.4000000.7000000.0000000.0000000.000000
21005317360.5300000.1700000.5300007.5714294.25000012.000000
31.000658975610.6580000.0970000.65800012.4150945.70588315.583333
410.0006.7406886.0520.6740000.0688000.67400010.2431617.09278310.787879
5100.00068.0415.16462.8770.6804100.0516400.68041010.0951047.50581410.389458
61.000.000682.33042.003640.3270.6823300.0420030.68233010.0282188.13381110.183804
710.000.0006.837.848355.5266.482.3220.6837850.0355530.68378510.0213218.46430010.123456
8100.000.00068.482.5193.079.88865.402.6310.6848250.0307990.68482510.0152158.66290510.089383
91.000.000.000685.644.65027.186.818658.457.8320.6856450.0271870.68564510.0119668.82721010.067758
1010.000.000.0006.863.107.954243.320.0356.619.787.9190.6863110.0243320.68631110.0097158.94992610.053473


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
387430.8750000.5000000.3750001.4000001.3333331.500000
4167430.4375000.2500000.1875001.0000001.0000001.000000
53214860.4375000.2500000.1875002.0000002.0000002.000000
6643012180.4687500.1875000.2812502.1428571.5000003.000000
71287221510.5625000.1640620.3984382.4000001.7500002.833333
8256158291290.6171880.1132810.5039062.1944441.3809522.529412
9512330592710.6445310.1152340.5292972.0886082.0344832.100775
101.024677995780.6611330.0966800.5644532.0515151.6779662.132841
112.0481.3591811.1780.6635740.0883790.5751952.0073851.8282832.038062
124.0962.7403192.4210.6689450.0778810.5910642.0161881.7624312.055178
138.1925.5185834.9350.6735840.0711670.6024172.0138691.8275862.038414
1416.38411.1021.04310.0590.6776120.0636600.6139532.0119611.7890222.038298
1532.76822.2161.96020.2560.6779790.0598140.6181642.0010811.8791952.013719
1665.53644.5743.53441.0400.6801450.0539250.6262212.0063921.8030612.026066
17131.07289.2216.59682.6250.6807020.0503230.6303792.0016381.8664402.013280
18262.144178.66012.275166.3850.6815340.0468250.6347082.0024431.8609762.013737
19524.288357.73523.187334.5480.6823250.0442260.6381002.0023231.8889612.010686
201.048.576715.52743.880671.6470.6823800.0418470.6405322.0001591.8924402.007625
212.097.1521.431.98883.6001.348.3880.6828250.0398640.6429622.0013051.9051962.007584
224.194.3042.865.502158.7662.706.7360.6831890.0378530.6453362.0010661.8991152.007387
238.388.6085.735.081302.1305.432.9510.6836750.0360170.6476582.0014231.9029892.007196
2416.777.21611.476.156576.37510.899.7810.6840320.0343550.6496782.0010451.9077052.006236
2533.554.43222.964.4401.102.99421.861.4460.6843940.0328720.6515222.0010571.9136742.005677
2667.108.86445.947.0522.115.32843.831.7240.6846640.0315210.6531442.0007911.9178062.004978
27134.217.72891.929.9934.065.06987.864.9240.6849320.0302870.6546452.0007811.9217202.004597
28268.435.456183.930.6097.822.929176.107.6800.6851950.0291430.6560522.0007681.9244272.004300
29536.870.912367.994.19315.074.902352.919.2910.6854430.0280790.6573632.0007231.9270152.003997
301.073.741.824736.229.95629.085.196707.144.7600.6856680.0270880.6585802.0006561.9293792.003701
312.147.483.6481.472.914.39556.195.3831.416.719.0120.6858790.0261680.6597112.0006171.9320962.003436
324.294.967.2962.946.688.137108.699.5172.837.988.6200.6860790.0253090.6607712.0005831.9343142.003212
338.589.934.5925.894.999.045210.471.6445.684.527.4010.6862680.0245020.6617662.0005511.9362702.003013
3417.179.869.18411.793.137.428407.965.51111.385.171.9170.6864510.0237470.6627042.0005331.9383392.002835


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
122101001
243201101
384301111
4164301111
5328331232
66412372442
7128213163567
8256293245879
95125935411151716
101.0249939419242927
112.048181317638494945
124.096319331474868079
138.1925833578146151149137
1416.3841.04331.038258259267259
1532.7681.96031.955474493487506
1665.5363.53433.529867884865918
17131.0726.59636.5911.6281.6371.6421.689
18262.14412.275312.2703.0463.0553.0713.103
19524.28823.187323.1825.8445.8125.7205.811
201.048.57643.880343.87511.02410.94510.90411.007
212.097.15283.600383.59520.92020.92120.81520.944
224.194.304158.7663158.76139.71139.81539.48739.753
238.388.608302.1303302.12575.63075.57875.23675.686
2416.777.216576.3753576.370144.082144.366143.867144.060
2533.554.4321.102.99431.102.989275.411276.199275.790275.594
2667.108.8642.115.32832.115.323528.829528.794528.993528.712
27134.217.7284.065.06934.065.0641.016.3231.015.7051.016.1941.016.847
28268.435.4567.822.92937.822.9241.956.1111.956.1411.954.1481.956.529
29536.870.91215.074.902315.074.8973.769.0583.769.4623.766.4433.769.939
301.073.741.82429.085.196329.085.1917.270.3277.273.4877.269.3257.272.057
312.147.483.64856.195.383356.195.37814.049.16714.050.96314.045.14314.050.110
324.294.967.296108.699.5173108.699.51227.175.69327.177.72527.171.85227.174.247
338.589.934.592210.471.6443210.471.63952.623.09052.620.53452.611.30752.616.713
3417.179.869.184407.965.5113407.965.506101.998.193101.998.958101.984.889101.983.471


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
121000100
242011100
383111200
4163111200
5326231500
664186112835
71285121291216149
8256129596929363034
951227112314764647271
101.024578275302129152142155
112.0481.178570607267314295302
124.0962.4211.1721.248570640608603
138.1924.9352.4112.5231.2371.2251.2501.223
1416.38410.0594.9615.0972.5122.5292.5312.487
1532.76820.2569.99910.2565.0475.1155.1114.983
1665.53641.04020.18720.85210.23810.29810.22410.280
17131.07282.62540.71041.91420.58420.74320.62620.672
18262.144166.38582.02684.35841.52441.49541.66241.704
19524.288334.548165.296169.25183.32583.68183.71183.831
201.048.576671.647331.901339.745166.970168.344167.983168.350
212.097.1521.348.388666.754681.633336.174337.674336.877337.663
224.194.3042.706.7361.339.3781.367.357675.841677.963675.618677.314
238.388.6085.432.9512.690.1282.742.8221.357.4781.359.3761.357.1941.358.903
2416.777.21610.899.7815.400.0715.499.7092.723.9462.724.5532.725.6592.725.623
2533.554.43221.861.44610.835.96511.025.4805.463.9695.467.3345.465.6975.464.446
2667.108.86443.831.72421.733.14622.098.57710.955.29010.959.28010.958.33610.958.818
27134.217.72887.864.92443.582.25344.282.67021.963.29921.966.03321.966.86221.968.730
28268.435.456176.107.68087.381.82888.725.85144.029.45244.026.68144.023.55344.027.994
29536.870.912352.919.291175.163.775177.755.51588.235.44188.223.65888.231.00988.229.183
301.073.741.824707.144.760351.065.231356.079.528176.791.594176.787.574176.778.880176.786.712
312.147.483.6481.416.719.012703.507.989713.211.022354.208.383354.165.590354.170.351354.174.688
324.294.967.2962.837.988.6201.409.641.4761.428.347.143709.518.164709.504.505709.483.953709.481.998
338.589.934.5925.684.527.4012.824.149.6382.860.377.7621.421.152.0771.421.152.1381.421.098.4181.421.124.768
3417.179.869.18411.385.171.9175.657.473.2585.727.698.6582.846.372.0282.846.333.8902.846.222.8102.846.243.189


8. Check for existing Integer Sequences by OEIS

Found in Database : 7, 3, 11, 43, 17, 19, 61, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 47, 23,
Found in Database : 7, 3, 11, 43, 17, 19, 61, 47, 23, 31, 59, 317, 443, 163, 179, 587, 71, 107, 269, 929,
Found in Database : 3, 7, 11, 17, 19, 23, 31, 43, 47, 59, 61, 71, 79, 83, 107, 109, 149,