Inhaltsverzeichnis

Development of
Algorithmic Constructions

03:10:12
Deutsch
18.Apr 2024

Polynom = x^2-40x-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) = 23 = 23
f(2) = 83 = 83
f(3) = 59 = 59
f(4) = 151 = 151
f(5) = 91 = 7*13
f(6) = 211 = 211
f(7) = 119 = 7*17
f(8) = 263 = 263
f(9) = 143 = 11*13
f(10) = 307 = 307
f(11) = 163 = 163
f(12) = 343 = 7*7*7
f(13) = 179 = 179
f(14) = 371 = 7*53
f(15) = 191 = 191
f(16) = 391 = 17*23
f(17) = 199 = 199
f(18) = 403 = 13*31
f(19) = 203 = 7*29
f(20) = 407 = 11*37
f(21) = 203 = 7*29
f(22) = 403 = 13*31
f(23) = 199 = 199
f(24) = 391 = 17*23
f(25) = 191 = 191
f(26) = 371 = 7*53
f(27) = 179 = 179
f(28) = 343 = 7*7*7
f(29) = 163 = 163
f(30) = 307 = 307
f(31) = 143 = 11*13
f(32) = 263 = 263
f(33) = 119 = 7*17
f(34) = 211 = 211
f(35) = 91 = 7*13
f(36) = 151 = 151
f(37) = 59 = 59
f(38) = 83 = 83
f(39) = 23 = 23
f(40) = 7 = 7
f(41) = 17 = 17
f(42) = 77 = 7*11
f(43) = 61 = 61
f(44) = 169 = 13*13
f(45) = 109 = 109
f(46) = 269 = 269
f(47) = 161 = 7*23
f(48) = 377 = 13*29
f(49) = 217 = 7*31
f(50) = 493 = 17*29
f(51) = 277 = 277
f(52) = 617 = 617
f(53) = 341 = 11*31
f(54) = 749 = 7*107
f(55) = 409 = 409
f(56) = 889 = 7*127
f(57) = 481 = 13*37
f(58) = 1037 = 17*61
f(59) = 557 = 557
f(60) = 1193 = 1193
f(61) = 637 = 7*7*13
f(62) = 1357 = 23*59
f(63) = 721 = 7*103
f(64) = 1529 = 11*139
f(65) = 809 = 809
f(66) = 1709 = 1709
f(67) = 901 = 17*53
f(68) = 1897 = 7*271
f(69) = 997 = 997
f(70) = 2093 = 7*13*23
f(71) = 1097 = 1097
f(72) = 2297 = 2297
f(73) = 1201 = 1201
f(74) = 2509 = 13*193
f(75) = 1309 = 7*11*17
f(76) = 2729 = 2729
f(77) = 1421 = 7*7*29
f(78) = 2957 = 2957
f(79) = 1537 = 29*53
f(80) = 3193 = 31*103
f(81) = 1657 = 1657
f(82) = 3437 = 7*491
f(83) = 1781 = 13*137
f(84) = 3689 = 7*17*31
f(85) = 1909 = 23*83
f(86) = 3949 = 11*359
f(87) = 2041 = 13*157
f(88) = 4217 = 4217
f(89) = 2177 = 7*311
f(90) = 4493 = 4493
f(91) = 2317 = 7*331
f(92) = 4777 = 17*281
f(93) = 2461 = 23*107
f(94) = 5069 = 37*137
f(95) = 2609 = 2609
f(96) = 5369 = 7*13*59
f(97) = 2761 = 11*251
f(98) = 5677 = 7*811
f(99) = 2917 = 2917
f(100) = 5993 = 13*461

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

f(0)=7
f(1)=23
f(2)=83
f(3)=59
f(4)=151
f(5)=13
f(6)=211
f(7)=17
f(8)=263
f(9)=11
f(10)=307
f(11)=163
f(12)=1
f(13)=179
f(14)=53
f(15)=191
f(16)=1
f(17)=199
f(18)=31
f(19)=29
f(20)=37
f(21)=1
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=1
f(27)=1
f(28)=1
f(29)=1
f(30)=1
f(31)=1
f(32)=1
f(33)=1
f(34)=1
f(35)=1
f(36)=1
f(37)=1
f(38)=1
f(39)=1
f(40)=1
f(41)=1
f(42)=1
f(43)=61
f(44)=1
f(45)=109
f(46)=269
f(47)=1
f(48)=1
f(49)=1
f(50)=1
f(51)=277
f(52)=617
f(53)=1
f(54)=107
f(55)=409
f(56)=127
f(57)=1
f(58)=1
f(59)=557
f(60)=1193
f(61)=1
f(62)=1
f(63)=103
f(64)=139
f(65)=809
f(66)=1709
f(67)=1
f(68)=271
f(69)=997
f(70)=1
f(71)=1097
f(72)=2297
f(73)=1201
f(74)=193
f(75)=1
f(76)=2729
f(77)=1
f(78)=2957
f(79)=1
f(80)=1
f(81)=1657
f(82)=491
f(83)=137
f(84)=1
f(85)=1
f(86)=359
f(87)=157
f(88)=4217
f(89)=311
f(90)=4493
f(91)=331
f(92)=281
f(93)=1
f(94)=1
f(95)=2609
f(96)=1
f(97)=251
f(98)=811
f(99)=2917

b) Substitution of the polynom
The polynom f(x)=x^2-40x-7 could be written as f(y)= y^2-407 with x=y+20

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-20
f'(x)>2x-41 with x > 20

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, 23, 83, 59, 151, 13, 211, 17, 263, 11, 307, 163, 1, 179, 53, 191, 1, 199, 31, 29, 37, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 61, 1, 109, 269, 1, 1, 1, 1, 277, 617, 1, 107, 409, 127, 1, 1, 557, 1193, 1, 1, 103, 139, 809, 1709, 1, 271, 997, 1, 1097, 2297, 1201, 193, 1, 2729, 1, 2957, 1, 1, 1657, 491, 137, 1, 1, 359, 157, 4217, 311, 4493, 331, 281, 1, 1, 2609, 1, 251, 811, 2917, 461, 181, 6317, 463, 1, 487, 241, 3581, 1, 1, 1, 1, 1151, 317, 8429, 1, 383, 643, 541, 1, 1, 1, 769, 5101, 1487, 5309, 1, 5521, 11257, 5737, 1063, 1, 229, 883, 12589, 1, 13049, 1, 1931, 1, 1999, 647, 467, 433, 14969, 1087, 499, 1123, 1229, 8117, 16493, 8377, 1, 8641, 1, 1, 18089, 9181, 18637, 1, 1129, 1, 859, 911, 701, 1, 1, 10601, 1, 641, 22093, 11197, 22697, 1, 1, 1, 23929, 1, 1889, 12437, 1, 12757, 3691, 1, 26489, 1, 1597, 1, 27817, 2011, 28493, 1109, 1, 509, 1, 521, 397, 15461, 31277, 15817, 1, 2311, 32717, 1, 1, 457, 1, 1571, 1, 17657, 5099, 1061, 36457, 1, 631, 2687, 1, 1, 3527, 19597, 1, 19997, 1, 887, 1, 20809, 1, 21221, 2521, 1, 3361, 1, 44537, 22481, 45389, 739, 6607, 1373, 1, 1, 4363, 1, 1321, 1, 1, 1, 2203, 25561, 51577, 26017, 7499, 1, 587, 929, 1, 27409, 4253, 569, 56237, 4051, 57193, 28837, 1, 1, 8447, 2293, 1, 1, 571, 1, 2003, 1, 63097, 1, 64109, 32309, 65129, 1427, 727, 1, 1, 33857, 1, 34381, 6299, 4987, 683, 1, 4201, 35977, 72493, 1, 1, 37061, 10667, 1, 4457, 1231, 1303, 5531, 3391, 1, 1297, 39841, 6173, 2377, 1, 1, 907, 1433, 659, 1453, 84857, 1, 86029, 1, 2357, 1, 88397, 44497, 12799, 3469, 1, 1987, 92009, 46309, 93229, 6703, 1, 6791, 1, 48157, 1, 48781, 1, 49409, 14207, 1, 1, 1, 3517, 7331, 743, 1, 1973, 52609, 4603, 1, 1, 53917, 1409, 54577, 1, 1493, 111149, 1, 1, 1, 113837, 1847, 8861, 1, 16651, 1, 991, 1, 1, 2069, 881, 1, 1471, 1, 1, 1, 124909, 1, 18047, 63521, 18251, 64237, 129193, 3821, 773, 853, 5743, 1, 10273, 67141, 135017, 1, 1, 1163, 857, 1, 1, 5393, 4861, 1, 1, 787, 1, 1, 145517, 73141, 3001, 6719, 21227, 1, 11549, 1237, 151693, 10891, 11789, 11003, 1447, 1, 1, 947, 22571, 79397, 3257, 1, 1, 81001, 1, 1, 164429, 1, 1, 83437, 1, 1, 1423, 85081, 1879, 85909, 172649, 1, 1, 12511, 175993, 1, 177677, 89261, 179369, 1, 25867, 6997, 26111, 1, 1, 7129, 6007, 1, 6481, 13487, 1, 1, 11261, 96157, 1, 4219, 27851, 1, 1, 98809, 11677, 14243, 200297, 2053, 3313, 9227, 203897, 7877, 29387, 1, 1289, 8017, 209357, 105137, 211193, 1, 1, 1, 9343, 1, 16673, 3511, 31231, 1, 2423, 2089, 1, 10151, 1637, 16087, 226169, 16223, 228077, 1, 1, 3121, 4733, 1, 3037, 1, 235789, 5147, 237737, 1, 1, 17191, 1, 121321, 1, 11119, 2699, 7253, 1, 124297, 249593, 1171, 10939, 18043, 253609, 1399, 1367, 128321, 257657, 9949, 1613, 2137, 1, 131381, 1, 132409, 3203, 1733, 1, 19211, 2477, 4673, 20929, 1, 1, 1, 1, 138661, 25307, 4507, 1567, 1, 282617, 1, 284749, 10993, 5413, 143981, 1, 13187, 2447, 1, 293357, 147221, 1, 21187, 1, 3049, 1, 150497, 1, 151597, 1499, 1, 43787, 4157, 1, 1, 3019, 22291, 10103, 1, 315437, 1907, 1181, 9377, 45707, 160541, 1, 1511, 1, 7079, 1, 1, 1489, 1, 331369, 3137, 1747, 1, 6857, 5813, 2843, 1187, 340649, 1, 342989, 1, 2287, 1, 1283, 1, 9461, 175621, 1, 176809, 1, 178001, 357197, 1, 1, 25771, 15739, 25943, 1, 16619, 366829, 3119, 1, 14249, 1831, 1361, 374137, 14437, 376589, 26987, 2027, 1, 1, 1, 2543, 192617, 1, 193861, 1, 1, 30113, 17851, 393977, 1, 7481, 28411, 6763, 1, 1429, 15493, 57727, 1, 5281, 1, 17791, 205237, 1, 1, 414329, 4241, 5023, 1, 1, 1, 3547, 1523, 1, 6871, 427309, 214309, 429929, 30803, 432557, 1823, 39563, 1, 437837, 9547, 62927, 16993, 1, 1, 15373, 223577, 1, 1, 451177, 32323, 34913, 227609, 1, 228961, 1, 2113, 2129, 231677, 1, 4397, 1, 33487, 20443, 2591, 472937, 237157, 475693, 1, 68351, 1, 1, 1, 1, 8369, 486797, 34871, 2897, 2063, 492397, 6673, 3463, 248309, 71147, 249721, 71551, 1, 29629, 8147, 506537, 2791, 509389, 1, 512249, 1, 1, 258277, 73999, 259717, 74411, 1459, 18061, 4451, 1, 1, 529577, 1, 40961, 266977, 23279, 1, 76907, 15877, 1, 24671, 4993, 1, 1, 39191, 17747, 1, 32537, 277309, 17939, 278801, 1, 280297, 1, 281797, 2557, 9769, 568109, 1, 43933, 40903, 574157, 1, 577193, 17021, 82891, 12647, 1, 1, 586349, 293941, 1, 1, 1, 1, 595577, 9631, 598669, 300109, 12281, 1, 1, 303217, 607993, 1, 1621, 1, 1, 43987, 1579, 309481, 5693, 5869, 1, 24049, 1, 1, 630029, 1, 633209, 45343, 5011, 1, 2309, 1, 642797, 1723, 1, 1789, 1, 325421, 1619, 1, 655693, 1, 1, 1627, 1, 331909, 10909, 25657, 95531, 1, 5647, 1993, 6311, 338461, 1, 1, 3533, 48823, 685177, 20201, 1, 5657, 4297, 1, 7639, 11239, 63499, 20593, 701837, 1, 24317, 7213, 1, 1, 711929, 1, 6011, 1, 1, 360197, 722093, 9781, 4621, 1, 1, 2269, 56333, 367021, 1, 368737, 8123, 1, 1, 21893, 2399, 373909, 24179, 1, 12763, 1, 1, 1, 1, 29297, 15581, 2437, 109567, 6301, 1, 386117, 4139, 55411, 59809, 55663, 7583, 2857, 60353, 393181, 1, 1, 1, 36067, 13037, 17327, 1, 1, 5857, 1, 27793, 31069, 27917, 1, 1, 407501, 116687, 24077, 820429, 7757, 63389, 58991, 827693, 1, 63949, 37871, 49117, 1, 5209, 420241, 120331, 422077, 1, 32609, 1, 8689, 3373, 1, 857069, 1, 27767, 1, 123499, 1, 4001, 435041, 67073, 39719, 875689, 62683, 1, 1, 883193, 442537, 1, 444421, 127247, 446309, 11617, 1, 1, 1, 4723, 4967, 905897, 1, 1, 455809, 1, 41611, 4519, 14827, 1, 7823, 1, 14951, 71453, 3911, 932749, 66763, 85147, 2879, 1, 471217, 19273, 2141, 135467, 475109, 952169, 36697, 11519, 6221,

6. Sequence of the polynom (only primes)

7, 23, 83, 59, 151, 13, 211, 17, 263, 11, 307, 163, 179, 53, 191, 199, 31, 29, 37, 61, 109, 269, 277, 617, 107, 409, 127, 557, 1193, 103, 139, 809, 1709, 271, 997, 1097, 2297, 1201, 193, 2729, 2957, 1657, 491, 137, 359, 157, 4217, 311, 4493, 331, 281, 2609, 251, 811, 2917, 461, 181, 6317, 463, 487, 241, 3581, 1151, 317, 8429, 383, 643, 541, 769, 5101, 1487, 5309, 5521, 11257, 5737, 1063, 229, 883, 12589, 13049, 1931, 1999, 647, 467, 433, 14969, 1087, 499, 1123, 1229, 8117, 16493, 8377, 8641, 18089, 9181, 18637, 1129, 859, 911, 701, 10601, 641, 22093, 11197, 22697, 23929, 1889, 12437, 12757, 3691, 26489, 1597, 27817, 2011, 28493, 1109, 509, 521, 397, 15461, 31277, 15817, 2311, 32717, 457, 1571, 17657, 5099, 1061, 36457, 631, 2687, 3527, 19597, 19997, 887, 20809, 21221, 2521, 3361, 44537, 22481, 45389, 739, 6607, 1373, 4363, 1321, 2203, 25561, 51577, 26017, 7499, 587, 929, 27409, 4253, 569, 56237, 4051, 57193, 28837, 8447, 2293, 571, 2003, 63097, 64109, 32309, 65129, 1427, 727, 33857, 34381, 6299, 4987, 683, 4201, 35977, 72493, 37061, 10667, 4457, 1231, 1303, 5531, 3391, 1297, 39841, 6173, 2377, 907, 1433, 659, 1453, 84857, 86029, 2357, 88397, 44497, 12799, 3469, 1987, 92009, 46309, 93229, 6703, 6791, 48157, 48781, 49409, 14207, 3517, 7331, 743, 1973, 52609, 4603, 53917, 1409, 54577, 1493, 111149, 113837, 1847, 8861, 16651, 991, 2069, 881, 1471, 124909, 18047, 63521, 18251, 64237, 129193, 3821, 773, 853, 5743, 10273, 67141, 135017, 1163, 857, 5393, 4861, 787, 145517, 73141, 3001, 6719, 21227, 11549, 1237, 151693, 10891, 11789, 11003, 1447, 947, 22571, 79397, 3257, 81001, 164429, 83437, 1423, 85081, 1879, 85909, 172649, 12511, 175993, 177677, 89261, 179369, 25867, 6997, 26111, 7129, 6007, 6481, 13487, 11261, 96157, 4219, 27851, 98809, 11677, 14243, 200297, 2053, 3313, 9227, 203897, 7877, 29387, 1289, 8017, 209357, 105137, 211193, 9343, 16673, 3511, 31231, 2423, 2089, 10151, 1637, 16087, 226169, 16223, 228077, 3121, 4733, 3037, 235789, 5147, 237737, 17191, 121321, 11119, 2699, 7253, 124297, 249593, 1171, 10939, 18043, 253609, 1399, 1367, 128321, 257657, 9949, 1613, 2137, 131381, 132409, 3203, 1733, 19211, 2477, 4673, 20929, 138661, 25307, 4507, 1567, 282617, 284749, 10993, 5413, 143981, 13187, 2447, 293357, 147221, 21187, 3049, 150497, 151597, 1499, 43787, 4157, 3019, 22291, 10103, 315437, 1907, 1181, 9377, 45707, 160541, 1511, 7079, 1489, 331369, 3137, 1747, 6857, 5813, 2843, 1187, 340649, 342989, 2287, 1283, 9461, 175621, 176809, 178001, 357197, 25771, 15739, 25943, 16619, 366829, 3119, 14249, 1831, 1361, 374137, 14437, 376589, 26987, 2027, 2543, 192617, 193861, 30113, 17851, 393977, 7481, 28411, 6763, 1429, 15493, 57727, 5281, 17791, 205237, 414329, 4241, 5023, 3547, 1523, 6871, 427309, 214309, 429929, 30803, 432557, 1823, 39563, 437837, 9547, 62927, 16993, 15373, 223577, 451177, 32323, 34913, 227609, 228961, 2113, 2129, 231677, 4397, 33487, 20443, 2591, 472937, 237157, 475693, 68351, 8369, 486797, 34871, 2897, 2063, 492397, 6673, 3463, 248309, 71147, 249721, 71551, 29629, 8147, 506537, 2791, 509389, 512249, 258277, 73999, 259717, 74411, 1459, 18061, 4451, 529577, 40961, 266977, 23279, 76907, 15877, 24671, 4993, 39191, 17747, 32537, 277309, 17939, 278801, 280297, 281797, 2557, 9769, 568109, 43933, 40903, 574157, 577193, 17021, 82891, 12647, 586349, 293941, 595577, 9631, 598669, 300109, 12281, 303217, 607993, 1621, 43987, 1579, 309481, 5693, 5869, 24049, 630029, 633209, 45343, 5011, 2309, 642797, 1723, 1789, 325421, 1619, 655693, 1627, 331909, 10909, 25657, 95531, 5647, 1993, 6311, 338461, 3533, 48823, 685177, 20201, 5657, 4297, 7639, 11239, 63499, 20593, 701837, 24317, 7213, 711929, 6011, 360197, 722093, 9781, 4621, 2269, 56333, 367021, 368737, 8123, 21893, 2399, 373909, 24179, 12763, 29297, 15581, 2437, 109567, 6301, 386117, 4139, 55411, 59809, 55663, 7583, 2857, 60353, 393181, 36067, 13037, 17327, 5857, 27793, 31069, 27917, 407501, 116687, 24077, 820429, 7757, 63389, 58991, 827693, 63949, 37871, 49117, 5209, 420241, 120331, 422077, 32609, 8689, 3373, 857069, 27767, 123499, 4001, 435041, 67073, 39719, 875689, 62683, 883193, 442537, 444421, 127247, 446309, 11617, 4723, 4967, 905897, 455809, 41611, 4519, 14827, 7823, 14951, 71453, 3911, 932749, 66763, 85147, 2879, 471217, 19273, 2141, 135467, 475109, 952169, 36697, 11519, 6221,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-40x-7 and
the reducible primes which appear as divisor for the first time
p | x^2-40x-7 and p < x^2-40x-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)
11011651.1000000.6000001.1000000.0000000.0000000.000000
21004915340.4900000.1500000.4900004.4545452.5000006.800000
31.0006411195220.6410000.1190000.64100013.0816337.93333315.352942
410.0006.8307886.0420.6830000.0788000.68300010.6552266.62184911.574713
5100.00068.6096.39462.2150.6860900.0639400.68609010.0452418.11421310.297087
61.000.000687.34152.168635.1730.6873410.0521680.68734110.0182338.15889910.209323
710.000.0006.881.393440.1176.441.2760.6881390.0440120.68813910.0116148.43653210.140979
8100.000.00068.869.8873.816.32465.053.5630.6886990.0381630.68869910.0081328.67115810.099484
91.000.000.000689.110.06533.673.552655.436.5130.6891100.0336740.68911010.0059718.82355710.075336
1010.000.000.0006.894.545.428301.306.4986.593.238.9300.6894550.0301310.68945510.0049988.94786810.059309


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
389541.1250000.6250000.5000001.8000001.6666672.000000
41615690.9375000.3750000.5625001.6666671.2000002.250000
532176110.5312500.1875000.3437501.1333331.0000001.222222
664269170.4062500.1406250.2656251.5294121.5000001.545455
71286618480.5156250.1406250.3750002.5384612.0000002.823529
8256149361130.5820310.1406250.4414062.2575762.0000002.354167
9512314672470.6132810.1308590.4824222.1073831.8611112.185841
101.0246551205350.6396480.1171880.5224612.0859871.7910452.165992
112.0481.3622121.1500.6650390.1035160.5615232.0793891.7666672.149533
124.0962.7593672.3920.6735840.0896000.5839842.0256971.7311322.080000
138.1925.5826634.9190.6813960.0809330.6004642.0231971.8065402.056438
1416.38411.1911.2339.9580.6830440.0752560.6077882.0048371.8597282.024395
1532.76822.4722.32920.1430.6857910.0710750.6147162.0080421.8888892.022796
1665.53644.9534.36640.5870.6859280.0666200.6193082.0004011.8746242.014943
17131.07290.0018.19381.8080.6866530.0625080.6241462.0021131.8765462.015621
18262.144180.02615.296164.7300.6867450.0583500.6283952.0002671.8669602.013617
19524.288360.23428.878331.3560.6870920.0550800.6320112.0010111.8879452.011510
201.048.576720.74854.509666.2390.6873590.0519840.6353752.0007771.8875612.010644
212.097.1521.442.082103.0361.339.0460.6876380.0491310.6385072.0008131.8902572.009858
224.194.3042.884.765196.2382.688.5270.6877820.0467870.6409952.0004171.9045582.007793
238.388.6085.772.054373.8025.398.2520.6880820.0445610.6435222.0008751.9048402.007885
2416.777.21611.547.965714.14810.833.8170.6883120.0425670.6457462.0006681.9104982.006912
2533.554.43223.100.8941.367.45821.733.4360.6884600.0407530.6477072.0004301.9148102.006074
2667.108.86446.212.5142.622.01743.590.4970.6886200.0390710.6495492.0004641.9174392.005688
27134.217.72892.442.9525.036.63387.406.3190.6887540.0375260.6512282.0003881.9209002.005169
28268.435.456184.921.7409.689.245175.232.4950.6888870.0360950.6527922.0003881.9237542.004803
29536.870.912369.906.33818.672.012351.234.3260.6890040.0347790.6542252.0003401.9270862.004390
301.073.741.824739.939.15236.023.903703.915.2490.6891220.0335500.6555722.0003421.9292992.004119
312.147.483.6481.480.108.77769.594.1531.410.514.6240.6892290.0324070.6568222.0003121.9318882.003813
324.294.967.2962.960.685.019134.597.9252.826.087.0940.6893380.0313390.6580002.0003161.9340412.003586
338.589.934.5925.922.191.886260.623.1495.661.568.7370.6894340.0303410.6590932.0002781.9363092.003324
3417.179.869.18411.846.012.031505.154.66111.340.857.3700.6895290.0294040.6601252.0002751.9382572.003130


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
122110101
243210102
385320203
4166420303
5326420303
6649452313
7128185136363
8256361224163143
9512672245313303
101.0241203981573573
112.0482126814410331033
124.09636711824917731843
138.19266321444932033373
1416.3841.23341781660136263
1532.7682.3297881.5411.14131.1823
1665.5364.3661.4482.9182.17632.1843
17131.0728.1932.7815.4124.09734.0903
18262.14415.2965.09810.1987.65437.6363
19524.28828.8789.67019.20814.447314.4253
201.048.57654.50918.14436.36527.228327.2753
212.097.152103.03634.26568.77151.402351.6283
224.194.304196.23865.360130.87898.043398.1893
238.388.608373.802124.767249.035186.8623186.9343
2416.777.216714.148238.454475.694357.0313357.1113
2533.554.4321.367.458456.606910.852683.3503684.1023
2667.108.8642.622.017875.0321.746.9851.311.25631.310.7553
27134.217.7285.036.6331.679.8513.356.7822.518.89332.517.7343
28268.435.4569.689.2453.230.8036.458.4424.844.99134.844.2483
29536.870.91218.672.0126.225.51912.446.4939.337.25239.334.7543
301.073.741.82436.023.90312.008.04924.015.85418.012.996318.010.9013
312.147.483.64869.594.15323.196.34546.397.80834.796.766334.797.3813
324.294.967.296134.597.92544.862.50489.735.42167.303.702367.294.2173
338.589.934.592260.623.14986.876.324173.746.825130.307.9263130.315.2173
3417.179.869.184505.154.661168.402.451336.752.210252.575.0293252.579.6263


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
121010001
242020101
384131111
4169271323
53211471334
66417982465
71284825231291413
8256113605333243224
951224713111666537355
101.024535279256138119160118
112.0481.150580570288261326275
124.0962.3921.2571.135637550642563
138.1924.9192.5352.3841.2851.1621.3211.151
1416.3849.9585.1434.8152.6162.3652.6432.334
1532.76820.14310.4169.7275.2324.8435.2824.786
1665.53640.58720.92119.66610.6319.66410.7009.592
17131.07281.80842.16239.64621.31019.59921.48119.418
18262.144164.73084.80679.92442.87039.51742.99339.350
19524.288331.356170.468160.88886.16679.40486.15679.630
201.048.576666.239342.749323.490172.556160.270172.912160.501
212.097.1521.339.046687.969651.077346.079323.375346.761322.831
224.194.3042.688.5271.378.7301.309.797694.303649.926694.653649.645
238.388.6085.398.2522.763.3002.634.9521.392.9821.307.0831.392.1261.306.061
2416.777.21610.833.8175.540.8505.292.9672.791.4162.627.8832.789.7622.624.756
2533.554.43221.733.43611.101.43910.631.9975.593.7915.276.3745.588.1585.275.113
2667.108.86443.590.49722.243.66721.346.83011.205.29210.592.85611.201.09010.591.259
27134.217.72887.406.31944.562.00342.844.31622.441.19021.265.35722.439.58521.260.187
28268.435.456175.232.49589.263.43185.969.06444.941.67142.672.49344.949.07242.669.259
29536.870.912351.234.326178.798.433172.435.89390.004.79185.611.81690.008.68985.609.030
301.073.741.824703.915.249358.095.409345.819.840180.221.302171.739.224180.237.736171.716.987
312.147.483.6481.410.514.624717.092.401693.422.223360.843.416344.409.739360.846.523344.414.946
324.294.967.2962.826.087.0941.435.938.5741.390.148.520722.437.893690.613.516722.438.513690.597.172
338.589.934.5925.661.568.7372.875.095.1192.786.473.6181.446.255.8511.384.551.9901.446.250.6801.384.510.216
3417.179.869.18411.340.857.3705.756.274.2275.584.583.1432.895.096.2402.775.353.2102.895.081.9252.775.325.995


8. Check for existing Integer Sequences by OEIS

Found in Database : 7, 23, 83, 59, 151, 13, 211, 17, 263, 11, 307, 163, 1, 179, 53, 191, 1, 199, 31, 29,
Found in Database : 7, 23, 83, 59, 151, 13, 211, 17, 263, 11, 307, 163, 179, 53, 191, 199, 31, 29, 37,
Found in Database : 7, 11, 13, 17, 23, 29, 31, 37, 53, 59, 61, 83, 103, 107, 109, 127, 137, 139,