Inhaltsverzeichnis

Development of
Algorithmic Constructions

02:31:36
Deutsch
18.Apr 2024

Polynom = x^2-88x+53

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) = 53 = 53
f(1) = 17 = 17
f(2) = 119 = 7*17
f(3) = 101 = 101
f(4) = 283 = 283
f(5) = 181 = 181
f(6) = 439 = 439
f(7) = 257 = 257
f(8) = 587 = 587
f(9) = 329 = 7*47
f(10) = 727 = 727
f(11) = 397 = 397
f(12) = 859 = 859
f(13) = 461 = 461
f(14) = 983 = 983
f(15) = 521 = 521
f(16) = 1099 = 7*157
f(17) = 577 = 577
f(18) = 1207 = 17*71
f(19) = 629 = 17*37
f(20) = 1307 = 1307
f(21) = 677 = 677
f(22) = 1399 = 1399
f(23) = 721 = 7*103
f(24) = 1483 = 1483
f(25) = 761 = 761
f(26) = 1559 = 1559
f(27) = 797 = 797
f(28) = 1627 = 1627
f(29) = 829 = 829
f(30) = 1687 = 7*241
f(31) = 857 = 857
f(32) = 1739 = 37*47
f(33) = 881 = 881
f(34) = 1783 = 1783
f(35) = 901 = 17*53
f(36) = 1819 = 17*107
f(37) = 917 = 7*131
f(38) = 1847 = 1847
f(39) = 929 = 929
f(40) = 1867 = 1867
f(41) = 937 = 937
f(42) = 1879 = 1879
f(43) = 941 = 941
f(44) = 1883 = 7*269
f(45) = 941 = 941
f(46) = 1879 = 1879
f(47) = 937 = 937
f(48) = 1867 = 1867
f(49) = 929 = 929
f(50) = 1847 = 1847
f(51) = 917 = 7*131
f(52) = 1819 = 17*107
f(53) = 901 = 17*53
f(54) = 1783 = 1783
f(55) = 881 = 881
f(56) = 1739 = 37*47
f(57) = 857 = 857
f(58) = 1687 = 7*241
f(59) = 829 = 829
f(60) = 1627 = 1627
f(61) = 797 = 797
f(62) = 1559 = 1559
f(63) = 761 = 761
f(64) = 1483 = 1483
f(65) = 721 = 7*103
f(66) = 1399 = 1399
f(67) = 677 = 677
f(68) = 1307 = 1307
f(69) = 629 = 17*37
f(70) = 1207 = 17*71
f(71) = 577 = 577
f(72) = 1099 = 7*157
f(73) = 521 = 521
f(74) = 983 = 983
f(75) = 461 = 461
f(76) = 859 = 859
f(77) = 397 = 397
f(78) = 727 = 727
f(79) = 329 = 7*47
f(80) = 587 = 587
f(81) = 257 = 257
f(82) = 439 = 439
f(83) = 181 = 181
f(84) = 283 = 283
f(85) = 101 = 101
f(86) = 119 = 7*17
f(87) = 17 = 17
f(88) = 53 = 53
f(89) = 71 = 71
f(90) = 233 = 233
f(91) = 163 = 163
f(92) = 421 = 421
f(93) = 259 = 7*37
f(94) = 617 = 617
f(95) = 359 = 359
f(96) = 821 = 821
f(97) = 463 = 463
f(98) = 1033 = 1033
f(99) = 571 = 571
f(100) = 1253 = 7*179

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-88x+53

f(0)=53
f(1)=17
f(2)=7
f(3)=101
f(4)=283
f(5)=181
f(6)=439
f(7)=257
f(8)=587
f(9)=47
f(10)=727
f(11)=397
f(12)=859
f(13)=461
f(14)=983
f(15)=521
f(16)=157
f(17)=577
f(18)=71
f(19)=37
f(20)=1307
f(21)=677
f(22)=1399
f(23)=103
f(24)=1483
f(25)=761
f(26)=1559
f(27)=797
f(28)=1627
f(29)=829
f(30)=241
f(31)=857
f(32)=1
f(33)=881
f(34)=1783
f(35)=1
f(36)=107
f(37)=131
f(38)=1847
f(39)=929
f(40)=1867
f(41)=937
f(42)=1879
f(43)=941
f(44)=269
f(45)=1
f(46)=1
f(47)=1
f(48)=1
f(49)=1
f(50)=1
f(51)=1
f(52)=1
f(53)=1
f(54)=1
f(55)=1
f(56)=1
f(57)=1
f(58)=1
f(59)=1
f(60)=1
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
f(69)=1
f(70)=1
f(71)=1
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=1
f(77)=1
f(78)=1
f(79)=1
f(80)=1
f(81)=1
f(82)=1
f(83)=1
f(84)=1
f(85)=1
f(86)=1
f(87)=1
f(88)=1
f(89)=1
f(90)=233
f(91)=163
f(92)=421
f(93)=1
f(94)=617
f(95)=359
f(96)=821
f(97)=463
f(98)=1033
f(99)=571

b) Substitution of the polynom
The polynom f(x)=x^2-88x+53 could be written as f(y)= y^2-1883 with x=y+44

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-44
f'(x)>2x-89 with x > 43

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

53, 17, 7, 101, 283, 181, 439, 257, 587, 47, 727, 397, 859, 461, 983, 521, 157, 577, 71, 37, 1307, 677, 1399, 103, 1483, 761, 1559, 797, 1627, 829, 241, 857, 1, 881, 1783, 1, 107, 131, 1847, 929, 1867, 937, 1879, 941, 269, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 233, 163, 421, 1, 617, 359, 821, 463, 1033, 571, 179, 683, 1481, 1, 1, 919, 1, 149, 2213, 1171, 2473, 1303, 2741, 1439, 431, 1579, 3301, 1723, 3593, 1871, 229, 1, 4201, 2179, 4517, 2339, 1, 2503, 739, 2671, 1, 2843, 5861, 3019, 6217, 457, 6581, 199, 409, 3571, 7333, 1, 1103, 1, 8117, 4159, 8521, 4363, 8933, 653, 1, 4783, 9781, 4999, 601, 307, 1523, 5443, 11113, 1, 1, 5903, 12041, 877, 12517, 6379, 13001, 1, 1, 6871, 1999, 419, 853, 1, 15017, 7639, 15541, 1129, 16073, 8171, 449, 8443, 1, 8719, 2531, 8999, 1, 9283, 1109, 563, 19433, 1409, 20021, 10159, 389, 10459, 21221, 1, 3119, 11071, 22453, 11383, 23081, 11699, 641, 1, 1433, 12343, 25013, 12671, 25673, 13003, 1, 13339, 27017, 13679, 27701, 379, 28393, 2053, 619, 14723, 1753, 887, 30517, 15439, 4463, 15803, 31973, 1, 32713, 1, 33461, 2417, 34217, 17299, 34981, 17683, 35753, 1063, 1, 499, 37321, 18859, 811, 19259, 38921, 1, 39733, 20071, 1, 20483, 41381, 20899, 1, 21319, 1, 1279, 43913, 22171, 44773, 3229, 45641, 23039, 1, 443, 1, 509, 6899, 24371, 49193, 1, 50101, 1487, 3001, 3677, 51941, 26203, 1429, 1, 53813, 27143, 7823, 1, 55717, 28099, 56681, 1, 57653, 4153, 3449, 1, 59621, 30059, 60617, 30559, 8803, 31063, 62633, 1, 1201, 32083, 911, 4657, 65717, 33119, 661, 1979, 3989, 34171, 9839, 34703, 69941, 1, 1511, 967, 72101, 5189, 1381, 36871, 74293, 37423, 75401, 1, 643, 2267, 77641, 39103, 2129, 39671, 1, 5749, 787, 40819, 82217, 41399, 1, 41983, 1, 42571, 85733, 2539, 5113, 43759, 88117, 6337, 1, 44963, 90533, 1, 91753, 46183, 1, 883, 1327, 47419, 95461, 1, 5689, 1, 97973, 1049, 99241, 49939, 100517, 1367, 14543, 1, 103093, 51871, 104393, 991, 105701, 1, 1039, 3167, 6373, 54503, 109673, 55171, 15859, 55843, 112361, 56519, 113717, 1217, 733, 8269, 1153, 1583, 117833, 59263, 7013, 3527, 17231, 60659, 122021, 61363, 123433, 62071, 124853, 8969, 3413, 63499, 127717, 1, 2437, 1, 1, 3863, 1, 66403, 133541, 67139, 135017, 9697, 136501, 1, 137993, 69371, 139493, 70123, 20143, 70879, 2689, 1009, 1, 4259, 977, 10453, 1123, 73943, 3163, 74719, 150217, 1, 21683, 76283, 153353, 2083, 154933, 77863, 156521, 1, 1, 1, 159721, 80263, 161333, 81071, 23279, 81883, 164581, 82699, 1, 1777, 167861, 12049, 947, 1607, 10069, 5059, 1, 2347, 1, 87679, 176201, 88523, 177893, 89371, 179593, 12889, 181301, 91079, 1, 91939, 4993, 1, 1567, 1993, 1759, 94543, 189961, 95419, 191717, 13757, 1187, 1, 195253, 971, 197033, 98963, 28403, 99859, 11801, 5927, 2851, 101663, 204233, 14653, 5569, 103483, 4423, 104399, 209717, 105319, 30223, 106243, 2113, 107171, 215273, 6359, 1, 1, 219017, 1549, 220901, 110923, 222793, 111871, 32099, 1, 226601, 113779, 228517, 1, 4903, 16529, 13669, 6863, 4421, 117643, 236261, 118619, 34031, 1, 1, 3259, 2351, 121571, 1013, 17509, 246121, 1, 248117, 1, 14713, 1, 1, 2693, 6869, 127583, 256181, 128599, 1733, 18517, 1117, 130643, 262313, 131671, 1, 1, 2239, 7867, 268517, 2543, 270601, 1913, 272693, 19553, 1, 1289, 276901, 2957, 7541, 1069, 40163, 1, 1237, 8363, 1, 143243, 1, 1, 289717, 145399, 4111, 1, 294053, 147571, 1, 148663, 1, 149759, 1, 1, 1, 1277, 305033, 153071, 307253, 154183, 309481, 155299, 44531, 156419, 313961, 157543, 316213, 1571, 318473, 1, 320741, 9467, 19001, 162079, 325301, 163223, 1, 164371, 7019, 165523, 332201, 166679, 9041, 23977, 1861, 169003, 339173, 1, 20089, 10079, 49123, 172519, 346217, 173699, 6577, 1, 4943, 25153, 353333, 1721, 355721, 3797, 2281, 179659, 51503, 10639, 1, 1, 1291, 183283, 367781, 26357, 370217, 1, 372661, 2633, 375113, 188171, 53939, 5119, 380041, 190639, 22501, 11287, 385001, 1, 387493, 194371, 1, 3691, 1, 196879, 56431, 198139, 397541, 199403, 3739, 200671, 402613, 1697, 23833, 1973, 407717, 5527, 410281, 205783, 58979, 3907, 8839, 2063, 3191, 209659, 3931, 30137, 423221, 1, 1, 1, 2729, 214883, 61583, 1451, 2423, 217519, 3331, 218843, 1, 1, 4373, 1, 444341, 222839, 9511, 13187, 3779, 225523, 452393, 226871, 455093, 228223, 12373, 32797, 8689, 230939, 3109, 232303, 6563, 1, 66959, 235043, 27733, 13907, 2383, 6427, 476981, 1, 479753, 240571, 1, 241963, 9157, 1493, 1, 244759, 490921, 1, 493733, 14563, 29209, 35569, 1, 1, 502217, 1, 505061, 253243, 72559, 6883, 510773, 5449, 513641, 257539, 516517, 36997, 30553, 15319, 1, 1, 525193, 263323, 2039, 264779, 531017, 266239, 1, 5051, 2089, 38453, 7603, 1, 542761, 16007, 1, 2557, 1, 275083, 551653, 1, 554633, 278063, 5521, 39937, 560617, 5303, 15233, 282563, 566633, 4001, 4787, 1, 1, 287099, 575717, 1, 1, 1, 12379, 7883, 584873, 2903, 3607, 1, 84431, 296279, 3319, 17519, 35129, 299371, 600293, 42989, 603401, 2309, 1, 304039, 609641, 305603, 87539, 307171, 11621, 6569, 619061, 8387, 2153, 2621, 1, 2393, 1, 1, 631733, 316663, 90703, 318259, 638117, 1, 17333, 3121, 12161, 46153, 647753, 1, 1, 1, 2131, 6977, 93923, 2099, 1, 331171, 663973, 332803, 667241, 47777, 670517, 336079, 673801, 1, 39829, 19963, 1, 1, 683701, 342679, 687017, 2311, 690341, 49429, 14759, 347671, 697013, 349343, 700361, 1, 1, 20747, 41593, 354383, 1, 3457, 713833, 51109, 6703, 3559, 720617, 361159, 724021, 362863, 103919, 364571, 730853, 6911, 1, 21647, 737717, 52817, 4547, 10039, 6959, 373171, 4133, 374903, 1, 376639, 1, 378379, 758501, 1, 761993, 3209, 1, 383623, 10831, 385379, 772517, 8237, 110863, 388903, 779573, 390671, 3361, 392443, 786661, 1, 1877, 1, 1, 23399, 797353, 399571, 114419, 5653, 804521, 403159, 21841, 404959, 4079, 58109, 815333, 8693, 7951, 410383, 822581, 24247, 1, 414019, 2029, 11239, 5309, 417671, 1907, 59929, 840841, 421339, 844517, 423179, 848201, 1, 1, 426871, 50329, 25219, 1, 430579, 863017, 1, 2011, 434303, 1, 436171, 874213, 11839, 125423, 439919, 1, 441799, 1, 26099, 1, 1, 893033, 447463, 8707, 6329, 1, 2521, 2749, 1, 908233, 4253,

6. Sequence of the polynom (only primes)

53, 17, 7, 101, 283, 181, 439, 257, 587, 47, 727, 397, 859, 461, 983, 521, 157, 577, 71, 37, 1307, 677, 1399, 103, 1483, 761, 1559, 797, 1627, 829, 241, 857, 881, 1783, 107, 131, 1847, 929, 1867, 937, 1879, 941, 269, 233, 163, 421, 617, 359, 821, 463, 1033, 571, 179, 683, 1481, 919, 149, 2213, 1171, 2473, 1303, 2741, 1439, 431, 1579, 3301, 1723, 3593, 1871, 229, 4201, 2179, 4517, 2339, 2503, 739, 2671, 2843, 5861, 3019, 6217, 457, 6581, 199, 409, 3571, 7333, 1103, 8117, 4159, 8521, 4363, 8933, 653, 4783, 9781, 4999, 601, 307, 1523, 5443, 11113, 5903, 12041, 877, 12517, 6379, 13001, 6871, 1999, 419, 853, 15017, 7639, 15541, 1129, 16073, 8171, 449, 8443, 8719, 2531, 8999, 9283, 1109, 563, 19433, 1409, 20021, 10159, 389, 10459, 21221, 3119, 11071, 22453, 11383, 23081, 11699, 641, 1433, 12343, 25013, 12671, 25673, 13003, 13339, 27017, 13679, 27701, 379, 28393, 2053, 619, 14723, 1753, 887, 30517, 15439, 4463, 15803, 31973, 32713, 33461, 2417, 34217, 17299, 34981, 17683, 35753, 1063, 499, 37321, 18859, 811, 19259, 38921, 39733, 20071, 20483, 41381, 20899, 21319, 1279, 43913, 22171, 44773, 3229, 45641, 23039, 443, 509, 6899, 24371, 49193, 50101, 1487, 3001, 3677, 51941, 26203, 1429, 53813, 27143, 7823, 55717, 28099, 56681, 57653, 4153, 3449, 59621, 30059, 60617, 30559, 8803, 31063, 62633, 1201, 32083, 911, 4657, 65717, 33119, 661, 1979, 3989, 34171, 9839, 34703, 69941, 1511, 967, 72101, 5189, 1381, 36871, 74293, 37423, 75401, 643, 2267, 77641, 39103, 2129, 39671, 5749, 787, 40819, 82217, 41399, 41983, 42571, 85733, 2539, 5113, 43759, 88117, 6337, 44963, 90533, 91753, 46183, 883, 1327, 47419, 95461, 5689, 97973, 1049, 99241, 49939, 100517, 1367, 14543, 103093, 51871, 104393, 991, 105701, 1039, 3167, 6373, 54503, 109673, 55171, 15859, 55843, 112361, 56519, 113717, 1217, 733, 8269, 1153, 1583, 117833, 59263, 7013, 3527, 17231, 60659, 122021, 61363, 123433, 62071, 124853, 8969, 3413, 63499, 127717, 2437, 3863, 66403, 133541, 67139, 135017, 9697, 136501, 137993, 69371, 139493, 70123, 20143, 70879, 2689, 1009, 4259, 977, 10453, 1123, 73943, 3163, 74719, 150217, 21683, 76283, 153353, 2083, 154933, 77863, 156521, 159721, 80263, 161333, 81071, 23279, 81883, 164581, 82699, 1777, 167861, 12049, 947, 1607, 10069, 5059, 2347, 87679, 176201, 88523, 177893, 89371, 179593, 12889, 181301, 91079, 91939, 4993, 1567, 1993, 1759, 94543, 189961, 95419, 191717, 13757, 1187, 195253, 971, 197033, 98963, 28403, 99859, 11801, 5927, 2851, 101663, 204233, 14653, 5569, 103483, 4423, 104399, 209717, 105319, 30223, 106243, 2113, 107171, 215273, 6359, 219017, 1549, 220901, 110923, 222793, 111871, 32099, 226601, 113779, 228517, 4903, 16529, 13669, 6863, 4421, 117643, 236261, 118619, 34031, 3259, 2351, 121571, 1013, 17509, 246121, 248117, 14713, 2693, 6869, 127583, 256181, 128599, 1733, 18517, 1117, 130643, 262313, 131671, 2239, 7867, 268517, 2543, 270601, 1913, 272693, 19553, 1289, 276901, 2957, 7541, 1069, 40163, 1237, 8363, 143243, 289717, 145399, 4111, 294053, 147571, 148663, 149759, 1277, 305033, 153071, 307253, 154183, 309481, 155299, 44531, 156419, 313961, 157543, 316213, 1571, 318473, 320741, 9467, 19001, 162079, 325301, 163223, 164371, 7019, 165523, 332201, 166679, 9041, 23977, 1861, 169003, 339173, 20089, 10079, 49123, 172519, 346217, 173699, 6577, 4943, 25153, 353333, 1721, 355721, 3797, 2281, 179659, 51503, 10639, 1291, 183283, 367781, 26357, 370217, 372661, 2633, 375113, 188171, 53939, 5119, 380041, 190639, 22501, 11287, 385001, 387493, 194371, 3691, 196879, 56431, 198139, 397541, 199403, 3739, 200671, 402613, 1697, 23833, 1973, 407717, 5527, 410281, 205783, 58979, 3907, 8839, 2063, 3191, 209659, 3931, 30137, 423221, 2729, 214883, 61583, 1451, 2423, 217519, 3331, 218843, 4373, 444341, 222839, 9511, 13187, 3779, 225523, 452393, 226871, 455093, 228223, 12373, 32797, 8689, 230939, 3109, 232303, 6563, 66959, 235043, 27733, 13907, 2383, 6427, 476981, 479753, 240571, 241963, 9157, 1493, 244759, 490921, 493733, 14563, 29209, 35569, 502217, 505061, 253243, 72559, 6883, 510773, 5449, 513641, 257539, 516517, 36997, 30553, 15319, 525193, 263323, 2039, 264779, 531017, 266239, 5051, 2089, 38453, 7603, 542761, 16007, 2557, 275083, 551653, 554633, 278063, 5521, 39937, 560617, 5303, 15233, 282563, 566633, 4001, 4787, 287099, 575717, 12379, 7883, 584873, 2903, 3607, 84431, 296279, 3319, 17519, 35129, 299371, 600293, 42989, 603401, 2309, 304039, 609641, 305603, 87539, 307171, 11621, 6569, 619061, 8387, 2153, 2621, 2393, 631733, 316663, 90703, 318259, 638117, 17333, 3121, 12161, 46153, 647753, 2131, 6977, 93923, 2099, 331171, 663973, 332803, 667241, 47777, 670517, 336079, 673801, 39829, 19963, 683701, 342679, 687017, 2311, 690341, 49429, 14759, 347671, 697013, 349343, 700361, 20747, 41593, 354383, 3457, 713833, 51109, 6703, 3559, 720617, 361159, 724021, 362863, 103919, 364571, 730853, 6911, 21647, 737717, 52817, 4547, 10039, 6959, 373171, 4133, 374903, 376639, 378379, 758501, 761993, 3209, 383623, 10831, 385379, 772517, 8237, 110863, 388903, 779573, 390671, 3361, 392443, 786661, 1877, 23399, 797353, 399571, 114419, 5653, 804521, 403159, 21841, 404959, 4079, 58109, 815333, 8693, 7951, 410383, 822581, 24247, 414019, 2029, 11239, 5309, 417671, 1907, 59929, 840841, 421339, 844517, 423179, 848201, 426871, 50329, 25219, 430579, 863017, 2011, 434303, 436171, 874213, 11839, 125423, 439919, 441799, 26099, 893033, 447463, 8707, 6329, 2521, 2749, 908233, 4253,

7. Distribution of the primes

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

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
21005022280.5000000.2200000.5000004.5454553.6666675.600000
31.0007792295500.7790000.2290000.77900015.58000010.40909119.642857
410.0007.9481.6776.2710.7948000.1677000.79480010.2028257.32314411.401818
5100.00077.90213.12064.7820.7790200.1312000.7790209.8014597.82349410.330410
61.000.000763.688107.110656.5780.7636880.1071100.7636889.8031888.16387210.135192
710.000.0007.529.189905.2786.623.9110.7529190.0905280.7529199.8589868.45185310.088536
8100.000.00074.505.4477.844.77066.660.6770.7450540.0784480.7450549.8955488.66559210.063643
91.000.000.000738.988.21569.238.510669.749.7050.7389880.0692390.7389889.9185808.82607310.047149
1010.000.000.0007.342.030.820619.656.3206.722.374.5000.7342030.0619660.7342039.9352478.94959110.037145


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
41617891.0625000.5000000.5625001.8888891.6000002.250000
5323113180.9687500.4062500.5625001.8235291.6250002.000000
6644217250.6562500.2656250.3906251.3548391.3076921.388889
71287130410.5546880.2343750.3203121.6904761.7647061.640000
8256175661090.6835940.2578120.4257812.4647892.2000002.658537
95123891292600.7597660.2519530.5078122.2228571.9545452.385321
101.0247992335660.7802730.2275390.5527342.0539851.8062022.176923
112.0481.6174211.1960.7895510.2055660.5839842.0237801.8068672.113074
124.0963.2487582.4900.7929690.1850590.6079102.0086581.8004752.081940
138.1926.5051.4195.0860.7940670.1732180.6208502.0027711.8720322.042570
1416.38412.9762.60710.3690.7919920.1591190.6328741.9947731.8372092.038734
1532.76825.7644.83420.9300.7862550.1475220.6387331.9855121.8542392.018517
1665.53651.2108.96042.2500.7814030.1367190.6446841.9876571.8535372.018634
17131.072101.80916.73685.0730.7767410.1276860.6490551.9880691.8678572.013562
18262.144202.41331.358171.0550.7721440.1196210.6525231.9881641.8736852.010685
19524.288402.33059.156343.1740.7673840.1128310.6545521.9876691.8864722.006220
201.048.576800.658111.834688.8240.7635670.1066530.6569141.9900531.8904932.007215
212.097.1521.593.416212.0011.381.4150.7598000.1010900.6587101.9901331.8956762.005469
224.194.3043.173.408403.4392.769.9690.7565990.0961870.6604121.9915751.9030052.005168
238.388.6086.321.845768.4805.553.3650.7536230.0916100.6620131.9921311.9048232.004847
2416.777.21612.599.2681.468.32711.130.9410.7509750.0875190.6634561.9929731.9106902.004360
2533.554.43225.116.0392.809.32222.306.7170.7485160.0837240.6647921.9934521.9132812.004028
2667.108.86450.082.1305.389.64344.692.4870.7462820.0803120.6659701.9940301.9184852.003544
27134.217.72899.885.17910.351.68489.533.4950.7442030.0771260.6670771.9944281.9206622.003323
28268.435.456199.252.27319.922.101179.330.1720.7422730.0742160.6680571.9948131.9245272.002939
29536.870.912397.546.22638.388.402359.157.8240.7404880.0715040.6689841.9951911.9269252.002774
301.073.741.824793.301.59874.079.157719.222.4410.7388200.0689920.6698281.9954951.9297282.002525
312.147.483.6481.583.298.854143.113.8511.440.185.0030.7372810.0666430.6706381.9958351.9319042.002419
324.294.967.2963.160.398.419276.813.3202.883.585.0990.7358380.0644510.6713871.9960851.9342172.002232
338.589.934.5926.309.207.098535.996.5165.773.210.5820.7344880.0623980.6720901.9963331.9363102.002095
3417.179.869.18412.596.617.0431.038.889.35211.557.727.6910.7332200.0604710.6727481.9965451.9382392.001958


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
122020011
243120111
385230212
4168440314
53213760616
664171070719
71283015157779
8256662937247269
95121294980527619
101.0242338015310171169
112.04842114827319972069
124.09675826449437773659
138.1921.41948393670876959
1416.3842.6078831.7241.30371.2889
1532.7684.8341.6023.2322.40472.4149
1665.5368.9602.9885.9724.46374.4819
17131.07216.7365.58711.1498.36178.3599
18262.14431.35810.47020.88815.709715.6339
19524.28859.15619.82839.32829.547729.5939
201.048.576111.83437.34474.49055.964755.8549
212.097.152212.00170.672141.329106.0117105.9749
224.194.304403.439134.587268.852201.8017201.6229
238.388.608768.480256.162512.318384.2957384.1699
2416.777.2161.468.327489.505978.822734.5757733.7369
2533.554.4322.809.322936.7491.872.5731.404.31771.404.9899
2667.108.8645.389.6431.796.9293.592.7142.694.15672.695.4719
27134.217.72810.351.6843.449.8676.901.8175.175.67275.175.9969
28268.435.45619.922.1016.641.46713.280.6349.959.72779.962.3589
29536.870.91238.388.40212.795.69325.592.70919.192.664719.195.7229
301.073.741.82474.079.15724.695.95949.383.19837.036.445737.042.6969
312.147.483.648143.113.85147.702.08895.411.76371.553.942771.559.8939
324.294.967.296276.813.32092.271.466184.541.854138.404.3427138.408.9629
338.589.934.592535.996.516178.658.667357.337.849267.997.6057267.998.8959
3417.179.869.1841.038.889.352346.300.894692.588.458519.454.8417519.434.4959


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
121011000
242021010
384132020
4169363051
532187117083
66425817102103
712841182310101011
8256109595020381635
951226015011045903392
101.0245663152519319185197
112.0481.196663533201413183399
124.0962.4901.3851.105436801427826
138.1925.0862.7552.3318861.6169391.645
1416.38410.3695.5834.7861.8683.2371.9823.282
1532.76820.93011.2489.6823.9746.4074.0066.543
1665.53642.25022.62919.6218.23612.8778.23012.907
17131.07285.07345.32539.74816.90325.71616.91025.544
18262.144171.05590.87280.18334.65750.98034.58950.829
19524.288343.174181.686161.48870.336101.18470.495101.159
201.048.576688.824363.296325.528143.147201.034143.376201.267
212.097.1521.381.415726.781654.634290.353399.816291.199400.047
224.194.3042.769.9691.454.0431.315.926588.480795.372589.520796.597
238.388.6085.553.3652.906.7222.646.6431.191.4771.584.9301.191.3821.585.576
2416.777.21611.130.9415.812.9365.318.0052.407.4863.157.6742.407.7933.157.988
2533.554.43222.306.71711.628.32510.678.3924.858.5136.292.8374.858.1746.297.193
2667.108.86444.692.48723.259.03821.433.4499.797.11212.545.5839.799.62112.550.171
27134.217.72889.533.49546.518.50443.014.99119.742.45625.017.47819.751.48525.022.076
28268.435.456179.330.17293.041.46386.288.70939.758.21249.900.36439.766.53349.905.063
29536.870.912359.157.824186.085.840173.071.98480.019.93499.554.24280.028.18099.555.468
301.073.741.824719.222.441372.167.305347.055.136160.972.706198.640.634160.970.584198.638.517
312.147.483.6481.440.185.003744.353.614695.831.389323.676.189396.407.428323.684.523396.416.863
324.294.967.2962.883.585.0991.488.674.8971.394.910.202650.575.199791.164.891650.620.799791.224.210
338.589.934.5925.773.210.5822.977.345.4632.795.865.1191.307.233.0871.579.335.8031.307.278.8611.579.362.831
3417.179.869.18411.557.727.6915.954.680.3745.603.047.3172.625.860.0663.152.980.5682.625.880.9983.153.006.059


8. Check for existing Integer Sequences by OEIS

Found in Database : 53, 17, 7, 101, 283, 181, 439, 257, 587, 47, 727, 397, 859, 461, 983, 521, 157, 577, 71, 37,
Found in Database : 53, 17, 7, 101, 283, 181, 439, 257, 587, 47, 727, 397, 859, 461, 983, 521, 157, 577, 71, 37, 1307, 677, 1399, 103, 1483, 761, 1559, 797, 1627, 829, 241, 857, 881, 1783, 107, 131, 1847, 929,
Found in Database : 7, 17, 37, 47, 53, 71, 101, 103, 107, 131, 149,