Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:53:22
Deutsch
19.Apr 2024

Polynom = x^2-180x-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) = 29 = 29
f(2) = 409 = 409
f(3) = 73 = 73
f(4) = 757 = 757
f(5) = 29 = 29
f(6) = 1097 = 1097
f(7) = 79 = 79
f(8) = 1429 = 1429
f(9) = 199 = 199
f(10) = 1753 = 1753
f(11) = 239 = 239
f(12) = 2069 = 2069
f(13) = 139 = 139
f(14) = 2377 = 2377
f(15) = 79 = 79
f(16) = 2677 = 2677
f(17) = 353 = 353
f(18) = 2969 = 2969
f(19) = 389 = 389
f(20) = 3253 = 3253
f(21) = 53 = 53
f(22) = 3529 = 3529
f(23) = 229 = 229
f(24) = 3797 = 3797
f(25) = 491 = 491
f(26) = 4057 = 4057
f(27) = 523 = 523
f(28) = 4309 = 31*139
f(29) = 277 = 277
f(30) = 4553 = 29*157
f(31) = 73 = 73
f(32) = 4789 = 4789
f(33) = 613 = 613
f(34) = 5017 = 29*173
f(35) = 641 = 641
f(36) = 5237 = 5237
f(37) = 167 = 167
f(38) = 5449 = 5449
f(39) = 347 = 347
f(40) = 5653 = 5653
f(41) = 719 = 719
f(42) = 5849 = 5849
f(43) = 743 = 743
f(44) = 6037 = 6037
f(45) = 383 = 383
f(46) = 6217 = 6217
f(47) = 197 = 197
f(48) = 6389 = 6389
f(49) = 809 = 809
f(50) = 6553 = 6553
f(51) = 829 = 829
f(52) = 6709 = 6709
f(53) = 53 = 53
f(54) = 6857 = 6857
f(55) = 433 = 433
f(56) = 6997 = 6997
f(57) = 883 = 883
f(58) = 7129 = 7129
f(59) = 899 = 29*31
f(60) = 7253 = 7253
f(61) = 457 = 457
f(62) = 7369 = 7369
f(63) = 29 = 29
f(64) = 7477 = 7477
f(65) = 941 = 941
f(66) = 7577 = 7577
f(67) = 953 = 953
f(68) = 7669 = 7669
f(69) = 241 = 241
f(70) = 7753 = 7753
f(71) = 487 = 487
f(72) = 7829 = 7829
f(73) = 983 = 983
f(74) = 7897 = 53*149
f(75) = 991 = 991
f(76) = 7957 = 73*109
f(77) = 499 = 499
f(78) = 8009 = 8009
f(79) = 251 = 251
f(80) = 8053 = 8053
f(81) = 1009 = 1009
f(82) = 8089 = 8089
f(83) = 1013 = 1013
f(84) = 8117 = 8117
f(85) = 127 = 127
f(86) = 8137 = 79*103
f(87) = 509 = 509
f(88) = 8149 = 29*281
f(89) = 1019 = 1019
f(90) = 8153 = 31*263
f(91) = 1019 = 1019
f(92) = 8149 = 29*281
f(93) = 509 = 509
f(94) = 8137 = 79*103
f(95) = 127 = 127
f(96) = 8117 = 8117
f(97) = 1013 = 1013
f(98) = 8089 = 8089
f(99) = 1009 = 1009
f(100) = 8053 = 8053

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-180x-53

f(0)=53
f(1)=29
f(2)=409
f(3)=73
f(4)=757
f(5)=1
f(6)=1097
f(7)=79
f(8)=1429
f(9)=199
f(10)=1753
f(11)=239
f(12)=2069
f(13)=139
f(14)=2377
f(15)=1
f(16)=2677
f(17)=353
f(18)=2969
f(19)=389
f(20)=3253
f(21)=1
f(22)=3529
f(23)=229
f(24)=3797
f(25)=491
f(26)=4057
f(27)=523
f(28)=31
f(29)=277
f(30)=157
f(31)=1
f(32)=4789
f(33)=613
f(34)=173
f(35)=641
f(36)=5237
f(37)=167
f(38)=5449
f(39)=347
f(40)=5653
f(41)=719
f(42)=5849
f(43)=743
f(44)=6037
f(45)=383
f(46)=6217
f(47)=197
f(48)=6389
f(49)=809
f(50)=6553
f(51)=829
f(52)=6709
f(53)=1
f(54)=6857
f(55)=433
f(56)=6997
f(57)=883
f(58)=7129
f(59)=1
f(60)=7253
f(61)=457
f(62)=7369
f(63)=1
f(64)=7477
f(65)=941
f(66)=7577
f(67)=953
f(68)=7669
f(69)=241
f(70)=7753
f(71)=487
f(72)=7829
f(73)=983
f(74)=149
f(75)=991
f(76)=109
f(77)=499
f(78)=8009
f(79)=251
f(80)=8053
f(81)=1009
f(82)=8089
f(83)=1013
f(84)=8117
f(85)=127
f(86)=103
f(87)=509
f(88)=281
f(89)=1019
f(90)=263
f(91)=1
f(92)=1
f(93)=1
f(94)=1
f(95)=1
f(96)=1
f(97)=1
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-180x-53 could be written as f(y)= y^2-8153 with x=y+90

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-90
f'(x)>2x-181 with x > 90

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, 29, 409, 73, 757, 1, 1097, 79, 1429, 199, 1753, 239, 2069, 139, 2377, 1, 2677, 353, 2969, 389, 3253, 1, 3529, 229, 3797, 491, 4057, 523, 31, 277, 157, 1, 4789, 613, 173, 641, 5237, 167, 5449, 347, 5653, 719, 5849, 743, 6037, 383, 6217, 197, 6389, 809, 6553, 829, 6709, 1, 6857, 433, 6997, 883, 7129, 1, 7253, 457, 7369, 1, 7477, 941, 7577, 953, 7669, 241, 7753, 487, 7829, 983, 149, 991, 109, 499, 8009, 251, 8053, 1009, 8089, 1013, 8117, 127, 103, 509, 281, 1019, 263, 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, 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, 1, 311, 1, 683, 1, 1063, 1, 1451, 1, 1847, 1, 2251, 307, 2663, 359, 3083, 1, 3511, 233, 3947, 521, 4391, 577, 1, 317, 5303, 1, 1, 751, 6247, 811, 1, 1, 1, 467, 7723, 997, 8231, 1061, 8747, 563, 1, 1, 9803, 1259, 10343, 1327, 10891, 349, 11447, 733, 12011, 1, 12583, 1609, 13163, 1, 13751, 439, 14347, 1831, 14951, 1907, 1, 1, 16183, 1031, 16811, 2141, 1, 2221, 1, 1151, 18743, 1, 19403, 2467, 20071, 2551, 20747, 659, 739, 1361, 22123, 1, 787, 2897, 23531, 1493, 24247, 769, 24971, 3167, 25703, 3259, 853, 419, 27191, 1723, 27947, 3541, 28711, 3637, 29483, 1867, 571, 479, 31051, 3931, 31847, 1, 1, 1033, 1, 1, 34283, 4337, 35111, 4441, 1, 2273, 36791, 1163, 37643, 4759, 1, 1, 39371, 1, 1, 2543, 41131, 5197, 42023, 5309, 42923, 2711, 827, 1, 1543, 5651, 1, 1, 1607, 1471, 47543, 3001, 48491, 6121, 1, 1, 50411, 3181, 51383, 1621, 52363, 6607, 1721, 1, 54347, 857, 55351, 3491, 1, 7109, 57383, 7237, 58411, 1, 59447, 937, 1, 1, 61543, 7759, 62603, 1973, 63671, 4013, 64747, 8161, 65831, 8297, 66923, 4217, 68023, 2143, 947, 1, 1, 1, 1, 1, 72503, 4567, 73643, 9277, 2579, 9421, 1, 4783, 2659, 607, 78283, 9859, 1, 10007, 80651, 2539, 81847, 5153, 1567, 10457, 84263, 1, 1171, 5381, 86711, 2729, 2837, 11071, 1129, 1, 1, 1423, 91703, 1, 1, 11701, 1193, 1, 95531, 6011, 96823, 1523, 98123, 12347, 99431, 12511, 100747, 3169, 102071, 6421, 1951, 13009, 104743, 13177, 1, 6673, 773, 1, 1, 13687, 110183, 13859, 3847, 877, 112951, 7103, 3943, 1, 115751, 14557, 117163, 1, 118583, 1, 120011, 15091, 121447, 15271, 122891, 3863, 124343, 7817, 125803, 15817, 127271, 16001, 128747, 8093, 4201, 4093, 839, 1, 1049, 16747, 134731, 1, 136247, 8563, 137771, 17317, 139303, 17509, 1109, 1, 142391, 2237, 143947, 1, 145511, 18287, 147083, 4621, 148663, 9341, 1, 1, 151847, 19081, 887, 1, 5347, 4871, 156683, 19687, 1, 19891, 1, 1, 161591, 10151, 163243, 20509, 1601, 20717, 166571, 10463, 168247, 1321, 1559, 21347, 2351, 21559, 1, 5443, 1, 10993, 176747, 1, 1, 1, 5813, 11317, 181943, 1, 183691, 23071, 3499, 23291, 187211, 2939, 188983, 11867, 190763, 23957, 1153, 24181, 1783, 12203, 2687, 3079, 197963, 24859, 199783, 25087, 201611, 6329, 1, 1, 7079, 1, 1, 1, 7207, 13121, 1, 6619, 2693, 26711, 214631, 26947, 216523, 1699, 218423, 13711, 2789, 1, 222247, 27901, 224171, 14071, 226103, 1, 1, 28627, 1, 28871, 231947, 1, 233911, 1, 1697, 1021, 7673, 1, 239851, 15053, 241847, 7589, 243851, 1, 245863, 30859, 1, 3889, 249911, 15683, 251947, 1, 1, 1, 4831, 16067, 1297, 4049, 260171, 1, 9043, 32911, 264331, 8293, 9187, 1, 1, 1087, 270631, 33961, 1, 1, 274871, 8623, 277003, 34759, 279143, 35027, 281291, 1103, 283447, 17783, 285611, 35837, 287783, 36109, 5471, 18191, 1483, 1, 294347, 36931, 296551, 1283, 1789, 9371, 1, 1, 9781, 1, 1, 38321, 307691, 19301, 1, 9721, 312203, 1, 2003, 39451, 4339, 4967, 319031, 20011, 321323, 1, 323623, 40597, 11239, 20443, 2203, 5147, 11399, 41467, 332903, 41759, 1, 10513, 1, 1, 1459, 42641, 1, 42937, 344683, 21617, 347063, 10883, 4787, 1, 351847, 44131, 354251, 2777, 356663, 22367, 1, 1553, 361511, 45341, 363947, 1, 2459, 1, 3581, 1, 371303, 46567, 2689, 11719, 1, 23593, 3677, 47497, 381223, 47809, 383723, 24061, 4889, 12109, 3061, 48751, 1, 1, 1999, 6173, 1, 24851, 1669, 50021, 1, 50341, 404011, 1, 406583, 6373, 409163, 51307, 411751, 51631, 414347, 1, 7867, 26141, 419563, 52609, 422183, 52937, 424811, 26633, 427447, 13399, 430091, 53927, 432743, 1871, 435403, 1, 4019, 1, 1, 1, 443431, 1, 446123, 27967, 1, 3517, 2269, 56611, 454247, 56951, 14741, 14323, 459703, 28817, 462443, 57977, 2963, 58321, 1, 29333, 470711, 14753, 1, 59359, 1, 59707, 16519, 7507, 481847, 30203, 2011, 60757, 487463, 1, 490283, 1, 493111, 7727, 495947, 62171, 498791, 2017, 1613, 1, 6911, 1, 507371, 63601, 510247, 1, 513131, 1, 516023, 1, 9791, 2243, 521831, 1, 1, 4111, 527671, 33071, 530603, 66509, 533543, 66877, 536491, 33623, 539447, 2113, 2161, 67987, 1, 1, 548363, 17183, 3187, 1, 554347, 69481, 19219, 69857, 2447, 35117, 19427, 1, 10687, 70991, 569447, 1, 572491, 8969, 2293, 36067, 578603, 1, 1, 72901, 2111, 36643, 4229, 9209, 590923, 2389, 594023, 1, 597131, 1, 600247, 1, 3613, 75617, 606503, 2621, 7717, 38201, 612791, 1, 1, 77191, 619111, 77587, 7877, 2437, 2617, 39191, 628651, 78781, 631847, 79181, 635051, 39791, 638263, 4999, 20693, 80387, 2767, 1, 22343, 1, 651191, 40801, 22567, 82009, 657703, 1, 2153, 41413, 6449, 20809, 667531, 1, 670823, 84059, 674123, 10559, 6577, 42443, 1, 1, 12907, 85717, 687403, 43067, 2179, 1, 694091, 2999, 697447, 1, 700811, 1, 704183, 1, 707563, 88657, 710951, 1, 1, 44753, 717751, 22483, 721163, 90359, 724583, 90787, 6679, 5701, 731447, 45823, 10067, 92077, 13931, 1, 741803, 46471, 1, 1, 1, 93811, 25939, 1, 1, 23671, 759223, 1, 5119, 95561, 766247, 96001, 4903, 48221, 6089, 1, 7127, 97327, 4673, 97771, 10739, 12277, 2843, 49331, 6229, 99109, 5717, 3433, 798251, 1, 1, 1, 805451, 100907, 809063, 101359, 1987, 25453, 2339, 51133,

6. Sequence of the polynom (only primes)

53, 29, 409, 73, 757, 1097, 79, 1429, 199, 1753, 239, 2069, 139, 2377, 2677, 353, 2969, 389, 3253, 3529, 229, 3797, 491, 4057, 523, 31, 277, 157, 4789, 613, 173, 641, 5237, 167, 5449, 347, 5653, 719, 5849, 743, 6037, 383, 6217, 197, 6389, 809, 6553, 829, 6709, 6857, 433, 6997, 883, 7129, 7253, 457, 7369, 7477, 941, 7577, 953, 7669, 241, 7753, 487, 7829, 983, 149, 991, 109, 499, 8009, 251, 8053, 1009, 8089, 1013, 8117, 127, 103, 509, 281, 1019, 263, 311, 683, 1063, 1451, 1847, 2251, 307, 2663, 359, 3083, 3511, 233, 3947, 521, 4391, 577, 317, 5303, 751, 6247, 811, 467, 7723, 997, 8231, 1061, 8747, 563, 9803, 1259, 10343, 1327, 10891, 349, 11447, 733, 12011, 12583, 1609, 13163, 13751, 439, 14347, 1831, 14951, 1907, 16183, 1031, 16811, 2141, 2221, 1151, 18743, 19403, 2467, 20071, 2551, 20747, 659, 739, 1361, 22123, 787, 2897, 23531, 1493, 24247, 769, 24971, 3167, 25703, 3259, 853, 419, 27191, 1723, 27947, 3541, 28711, 3637, 29483, 1867, 571, 479, 31051, 3931, 31847, 1033, 34283, 4337, 35111, 4441, 2273, 36791, 1163, 37643, 4759, 39371, 2543, 41131, 5197, 42023, 5309, 42923, 2711, 827, 1543, 5651, 1607, 1471, 47543, 3001, 48491, 6121, 50411, 3181, 51383, 1621, 52363, 6607, 1721, 54347, 857, 55351, 3491, 7109, 57383, 7237, 58411, 59447, 937, 61543, 7759, 62603, 1973, 63671, 4013, 64747, 8161, 65831, 8297, 66923, 4217, 68023, 2143, 947, 72503, 4567, 73643, 9277, 2579, 9421, 4783, 2659, 607, 78283, 9859, 10007, 80651, 2539, 81847, 5153, 1567, 10457, 84263, 1171, 5381, 86711, 2729, 2837, 11071, 1129, 1423, 91703, 11701, 1193, 95531, 6011, 96823, 1523, 98123, 12347, 99431, 12511, 100747, 3169, 102071, 6421, 1951, 13009, 104743, 13177, 6673, 773, 13687, 110183, 13859, 3847, 877, 112951, 7103, 3943, 115751, 14557, 117163, 118583, 120011, 15091, 121447, 15271, 122891, 3863, 124343, 7817, 125803, 15817, 127271, 16001, 128747, 8093, 4201, 4093, 839, 1049, 16747, 134731, 136247, 8563, 137771, 17317, 139303, 17509, 1109, 142391, 2237, 143947, 145511, 18287, 147083, 4621, 148663, 9341, 151847, 19081, 887, 5347, 4871, 156683, 19687, 19891, 161591, 10151, 163243, 20509, 1601, 20717, 166571, 10463, 168247, 1321, 1559, 21347, 2351, 21559, 5443, 10993, 176747, 5813, 11317, 181943, 183691, 23071, 3499, 23291, 187211, 2939, 188983, 11867, 190763, 23957, 1153, 24181, 1783, 12203, 2687, 3079, 197963, 24859, 199783, 25087, 201611, 6329, 7079, 7207, 13121, 6619, 2693, 26711, 214631, 26947, 216523, 1699, 218423, 13711, 2789, 222247, 27901, 224171, 14071, 226103, 28627, 28871, 231947, 233911, 1697, 1021, 7673, 239851, 15053, 241847, 7589, 243851, 245863, 30859, 3889, 249911, 15683, 251947, 4831, 16067, 1297, 4049, 260171, 9043, 32911, 264331, 8293, 9187, 1087, 270631, 33961, 274871, 8623, 277003, 34759, 279143, 35027, 281291, 1103, 283447, 17783, 285611, 35837, 287783, 36109, 5471, 18191, 1483, 294347, 36931, 296551, 1283, 1789, 9371, 9781, 38321, 307691, 19301, 9721, 312203, 2003, 39451, 4339, 4967, 319031, 20011, 321323, 323623, 40597, 11239, 20443, 2203, 5147, 11399, 41467, 332903, 41759, 10513, 1459, 42641, 42937, 344683, 21617, 347063, 10883, 4787, 351847, 44131, 354251, 2777, 356663, 22367, 1553, 361511, 45341, 363947, 2459, 3581, 371303, 46567, 2689, 11719, 23593, 3677, 47497, 381223, 47809, 383723, 24061, 4889, 12109, 3061, 48751, 1999, 6173, 24851, 1669, 50021, 50341, 404011, 406583, 6373, 409163, 51307, 411751, 51631, 414347, 7867, 26141, 419563, 52609, 422183, 52937, 424811, 26633, 427447, 13399, 430091, 53927, 432743, 1871, 435403, 4019, 443431, 446123, 27967, 3517, 2269, 56611, 454247, 56951, 14741, 14323, 459703, 28817, 462443, 57977, 2963, 58321, 29333, 470711, 14753, 59359, 59707, 16519, 7507, 481847, 30203, 2011, 60757, 487463, 490283, 493111, 7727, 495947, 62171, 498791, 2017, 1613, 6911, 507371, 63601, 510247, 513131, 516023, 9791, 2243, 521831, 4111, 527671, 33071, 530603, 66509, 533543, 66877, 536491, 33623, 539447, 2113, 2161, 67987, 548363, 17183, 3187, 554347, 69481, 19219, 69857, 2447, 35117, 19427, 10687, 70991, 569447, 572491, 8969, 2293, 36067, 578603, 72901, 2111, 36643, 4229, 9209, 590923, 2389, 594023, 597131, 600247, 3613, 75617, 606503, 2621, 7717, 38201, 612791, 77191, 619111, 77587, 7877, 2437, 2617, 39191, 628651, 78781, 631847, 79181, 635051, 39791, 638263, 4999, 20693, 80387, 2767, 22343, 651191, 40801, 22567, 82009, 657703, 2153, 41413, 6449, 20809, 667531, 670823, 84059, 674123, 10559, 6577, 42443, 12907, 85717, 687403, 43067, 2179, 694091, 2999, 697447, 700811, 704183, 707563, 88657, 710951, 44753, 717751, 22483, 721163, 90359, 724583, 90787, 6679, 5701, 731447, 45823, 10067, 92077, 13931, 741803, 46471, 93811, 25939, 23671, 759223, 5119, 95561, 766247, 96001, 4903, 48221, 6089, 7127, 97327, 4673, 97771, 10739, 12277, 2843, 49331, 6229, 99109, 5717, 3433, 798251, 805451, 100907, 809063, 101359, 1987, 25453, 2339, 51133,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-180x-53 and
the reducible primes which appear as divisor for the first time
p | x^2-180x-53 and p < x^2-180x-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)
11010641.0000000.6000001.0000000.0000000.0000000.000000
21008139420.8100000.3900000.8100008.1000006.50000010.500000
31.0007052714340.7050000.2710000.7050008.7037046.94871810.333333
410.0007.5712.1325.4390.7571000.2132000.75710010.7390077.86715912.532258
5100.00075.10616.67858.4280.7510600.1667800.7510609.9202227.82270110.742415
61.000.000741.761135.490606.2710.7417610.1354900.7417619.8761888.12387610.376378
710.000.0007.342.0251.144.2416.197.7840.7342030.1144240.7342039.8981018.44520710.222795
8100.000.00072.864.8539.910.66562.954.1880.7286490.0991070.7286499.9243558.66134510.157532
91.000.000.000724.450.91387.436.311637.014.6020.7244510.0874360.7244519.9423918.82244710.118701
1010.000.000.0007.211.324.810782.498.9616.428.825.8490.7211330.0782500.7211339.9541938.94935910.092116


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
388531.0000000.6250000.3750001.6000001.6666671.500000
41615960.9375000.5625000.3750001.8750001.8000002.000000
5322916130.9062500.5000000.4062501.9333331.7777782.166667
6645831270.9062500.4843750.4218752.0000001.9375002.076923
71288139420.6328120.3046880.3281251.3965521.2580651.555556
825612868600.5000000.2656250.2343751.5802471.7435901.428571
95123281481800.6406250.2890620.3515622.5625002.1764713.000000
101.0247212784430.7041020.2714840.4326172.1981711.8783782.461111
112.0481.5135279860.7387700.2573240.4814452.0984741.8956832.225734
124.0963.0769722.1040.7509770.2373050.5136722.0330471.8444022.133874
138.1926.1811.7844.3970.7545170.2177730.5367432.0094281.8353912.089829
1416.38412.3663.2509.1160.7547610.1983640.5563962.0006471.8217492.073232
1532.76824.7716.04418.7270.7559510.1844480.5715032.0031541.8596922.054300
1665.53649.38911.32938.0600.7536160.1728670.5807501.9938231.8744212.032360
17131.07298.29421.26177.0330.7499240.1622090.5877151.9902001.8766882.023988
18262.144195.86939.927155.9420.7471810.1523090.5948721.9926851.8779462.024353
19524.288390.16875.216314.9520.7441860.1434630.6007231.9919841.8838382.019674
201.048.576777.636141.524636.1120.7416110.1349680.6066441.9930801.8815682.019711
212.097.1521.549.583268.2481.281.3350.7388990.1279110.6109881.9926841.8954242.014323
224.194.3043.089.768509.9872.579.7810.7366580.1215900.6150681.9939351.9011772.013354
238.388.6086.162.996971.2525.191.7440.7346860.1157820.6189041.9946471.9044642.012475
2416.777.21612.294.6701.854.82510.439.8450.7328190.1105560.6222631.9949181.9097262.010855
2533.554.43224.531.1863.551.06220.980.1240.7310860.1058300.6252561.9952701.9145002.009620
2667.108.86448.957.1066.809.75342.147.3530.7295180.1014730.6280441.9957091.9176672.008918
27134.217.72897.717.16213.077.96284.639.2000.7280500.0974380.6306111.9959751.9204752.008174
28268.435.456195.080.62425.158.187169.922.4370.7267320.0937220.6330101.9963801.9237092.007609
29536.870.912389.491.76748.479.218341.012.5490.7254850.0903000.6351851.9965681.9269762.006872
301.073.741.824777.747.45393.546.113684.201.3400.7243340.0871220.6372121.9968261.9296132.006382
312.147.483.6481.553.198.483180.722.4111.372.476.0720.7232640.0841550.6391091.9970471.9319072.005953
324.294.967.2963.102.105.342349.548.8462.752.556.4960.7222650.0813860.6408801.9972371.9341752.005541
338.589.934.5926.196.181.475676.849.7335.519.331.7420.7213300.0787960.6425351.9974121.9363522.005166
3417.179.869.18412.377.295.4111.311.956.85911.065.338.5520.7204530.0763660.6440871.9975681.9383282.004833


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
122111010
243211020
385322030
4169634050
532161157090
664312110140170
7128392514180210
825668343418142115
9512148618718522157
101.0242781071711811321126
112.0485271883391824121247
124.0969723356371847321460
138.1921.7846061.1781887621869
1416.3843.2501.0902.160181.621211.590
1532.7686.0442.0374.007183.015212.990
1665.53611.3293.7857.544185.650215.640
17131.07221.2617.10114.1601810.5862110.636
18262.14439.92713.28826.6391819.8922119.996
19524.28875.21625.07550.1411837.5412137.636
201.048.576141.52447.18894.3361870.7842170.701
212.097.152268.24889.350178.89818134.21721133.992
224.194.304509.987169.795340.19218255.11421254.834
238.388.608971.252323.778647.47418485.50921485.704
2416.777.2161.854.825618.3971.236.42818928.15221926.634
2533.554.4323.551.0621.184.3712.366.691181.776.032211.774.991
2667.108.8646.809.7532.270.6264.539.127183.404.779213.404.935
27134.217.72813.077.9624.359.4268.718.536186.538.266216.539.657
28268.435.45625.158.1878.387.32116.770.8661812.579.2702112.578.878
29536.870.91248.479.21816.159.57832.319.6401824.238.9472124.240.232
301.073.741.82493.546.11331.178.15162.367.9621846.774.4172146.771.657
312.147.483.648180.722.41160.236.882120.485.5291890.360.6822190.361.690
324.294.967.296349.548.846116.505.818233.043.02818174.773.57121174.775.236
338.589.934.592676.849.733225.610.328451.239.40518338.424.62021338.425.074
3417.179.869.1841.311.956.859437.305.433874.651.42618655.975.09521655.981.725


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
121010010
242111010
383211011
4166421113
53213852353
6642713146597
71284218241081311
825660273313131816
9512180968445404847
101.024443239204102112111118
112.048986529457233255244254
124.0962.1041.117987486559513546
138.1924.3972.2982.0991.0431.1491.0821.123
1416.3849.1164.7704.3462.1992.3142.2302.373
1532.76818.7279.7298.9984.5314.7774.5394.880
1665.53638.06019.75918.3019.3149.7649.2459.737
17131.07277.03339.72537.30818.75619.71918.78519.773
18262.144155.94280.19775.74538.18239.83538.15539.770
19524.288314.952161.472153.48077.33880.18577.21080.219
201.048.576636.112326.090310.022156.390161.714156.318161.690
212.097.1521.281.335656.382624.953315.356325.368315.614324.997
224.194.3042.579.7811.319.6031.260.178635.667654.287636.220653.607
238.388.6085.191.7442.652.6842.539.0601.280.4921.315.1791.280.3721.315.701
2416.777.21610.439.8455.330.6925.109.1532.576.8622.642.3752.576.9922.643.616
2533.554.43220.980.12410.702.65510.277.4695.181.9265.307.4375.181.9985.308.763
2667.108.86442.147.35321.479.70020.667.65310.415.05510.656.51110.416.66510.659.122
27134.217.72884.639.20043.091.47741.547.72320.927.48921.389.44020.930.75721.391.514
28268.435.456169.922.43786.442.51783.479.92042.038.75542.923.69642.038.80542.921.181
29536.870.912341.012.549173.347.787167.664.76284.391.85986.104.86584.406.74286.109.083
301.073.741.824684.201.340347.580.660336.620.680169.402.983172.698.233169.413.387172.686.737
312.147.483.6481.372.476.072696.829.598675.646.474339.947.935346.297.128339.970.632346.260.377
324.294.967.2962.752.556.4961.396.765.1421.355.791.354682.019.670694.257.898682.055.911694.223.017
338.589.934.5925.519.331.7422.799.268.0152.720.063.7271.368.022.0911.391.626.6881.368.103.0431.391.579.920
3417.179.869.18411.065.338.5525.609.288.2955.456.050.2572.743.504.5772.789.154.0912.743.598.3232.789.081.561


8. Check for existing Integer Sequences by OEIS

Found in Database : 53, 29, 409, 73, 757, 1, 1097, 79, 1429, 199, 1753, 239, 2069, 139, 2377, 1, 2677, 353, 2969, 389,
Found in Database : 53, 29, 409, 73, 757, 1097, 79, 1429, 199, 1753, 239, 2069, 139, 2377, 2677, 353, 2969, 389, 3253, 3529, 229, 3797, 491, 4057, 523, 31, 277, 157, 4789, 613, 173, 641, 5237, 167, 5449, 347,
Found in Database : 29, 31, 53, 73, 79, 103, 109, 127, 139, 149,