Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:52:10
Deutsch
16.Apr 2024

Polynom = x^2-60x+37

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) = 37 = 37
f(1) = 11 = 11
f(2) = 79 = 79
f(3) = 67 = 67
f(4) = 187 = 11*17
f(5) = 119 = 7*17
f(6) = 287 = 7*41
f(7) = 167 = 167
f(8) = 379 = 379
f(9) = 211 = 211
f(10) = 463 = 463
f(11) = 251 = 251
f(12) = 539 = 7*7*11
f(13) = 287 = 7*41
f(14) = 607 = 607
f(15) = 319 = 11*29
f(16) = 667 = 23*29
f(17) = 347 = 347
f(18) = 719 = 719
f(19) = 371 = 7*53
f(20) = 763 = 7*109
f(21) = 391 = 17*23
f(22) = 799 = 17*47
f(23) = 407 = 11*37
f(24) = 827 = 827
f(25) = 419 = 419
f(26) = 847 = 7*11*11
f(27) = 427 = 7*61
f(28) = 859 = 859
f(29) = 431 = 431
f(30) = 863 = 863
f(31) = 431 = 431
f(32) = 859 = 859
f(33) = 427 = 7*61
f(34) = 847 = 7*11*11
f(35) = 419 = 419
f(36) = 827 = 827
f(37) = 407 = 11*37
f(38) = 799 = 17*47
f(39) = 391 = 17*23
f(40) = 763 = 7*109
f(41) = 371 = 7*53
f(42) = 719 = 719
f(43) = 347 = 347
f(44) = 667 = 23*29
f(45) = 319 = 11*29
f(46) = 607 = 607
f(47) = 287 = 7*41
f(48) = 539 = 7*7*11
f(49) = 251 = 251
f(50) = 463 = 463
f(51) = 211 = 211
f(52) = 379 = 379
f(53) = 167 = 167
f(54) = 287 = 7*41
f(55) = 119 = 7*17
f(56) = 187 = 11*17
f(57) = 67 = 67
f(58) = 79 = 79
f(59) = 11 = 11
f(60) = 37 = 37
f(61) = 49 = 7*7
f(62) = 161 = 7*23
f(63) = 113 = 113
f(64) = 293 = 293
f(65) = 181 = 181
f(66) = 433 = 433
f(67) = 253 = 11*23
f(68) = 581 = 7*83
f(69) = 329 = 7*47
f(70) = 737 = 11*67
f(71) = 409 = 409
f(72) = 901 = 17*53
f(73) = 493 = 17*29
f(74) = 1073 = 29*37
f(75) = 581 = 7*83
f(76) = 1253 = 7*179
f(77) = 673 = 673
f(78) = 1441 = 11*131
f(79) = 769 = 769
f(80) = 1637 = 1637
f(81) = 869 = 11*79
f(82) = 1841 = 7*263
f(83) = 973 = 7*139
f(84) = 2053 = 2053
f(85) = 1081 = 23*47
f(86) = 2273 = 2273
f(87) = 1193 = 1193
f(88) = 2501 = 41*61
f(89) = 1309 = 7*11*17
f(90) = 2737 = 7*17*23
f(91) = 1429 = 1429
f(92) = 2981 = 11*271
f(93) = 1553 = 1553
f(94) = 3233 = 53*61
f(95) = 1681 = 41*41
f(96) = 3493 = 7*499
f(97) = 1813 = 7*7*37
f(98) = 3761 = 3761
f(99) = 1949 = 1949
f(100) = 4037 = 11*367

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-60x+37

f(0)=37
f(1)=11
f(2)=79
f(3)=67
f(4)=17
f(5)=7
f(6)=41
f(7)=167
f(8)=379
f(9)=211
f(10)=463
f(11)=251
f(12)=1
f(13)=1
f(14)=607
f(15)=29
f(16)=23
f(17)=347
f(18)=719
f(19)=53
f(20)=109
f(21)=1
f(22)=47
f(23)=1
f(24)=827
f(25)=419
f(26)=1
f(27)=61
f(28)=859
f(29)=431
f(30)=863
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)=1
f(44)=1
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)=113
f(64)=293
f(65)=181
f(66)=433
f(67)=1
f(68)=83
f(69)=1
f(70)=1
f(71)=409
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=179
f(77)=673
f(78)=131
f(79)=769
f(80)=1637
f(81)=1
f(82)=263
f(83)=139
f(84)=2053
f(85)=1
f(86)=2273
f(87)=1193
f(88)=1
f(89)=1
f(90)=1
f(91)=1429
f(92)=271
f(93)=1553
f(94)=1
f(95)=1
f(96)=499
f(97)=1
f(98)=3761
f(99)=1949

b) Substitution of the polynom
The polynom f(x)=x^2-60x+37 could be written as f(y)= y^2-863 with x=y+30

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-30
f'(x)>2x-61 with x > 29

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

37, 11, 79, 67, 17, 7, 41, 167, 379, 211, 463, 251, 1, 1, 607, 29, 23, 347, 719, 53, 109, 1, 47, 1, 827, 419, 1, 61, 859, 431, 863, 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, 113, 293, 181, 433, 1, 83, 1, 1, 409, 1, 1, 1, 1, 179, 673, 131, 769, 1637, 1, 263, 139, 2053, 1, 2273, 1193, 1, 1, 1, 1429, 271, 1553, 1, 1, 499, 1, 3761, 1949, 367, 2089, 149, 1, 659, 2381, 1, 1, 227, 2689, 1, 1, 5861, 1, 563, 3181, 1, 479, 983, 3529, 7237, 3709, 691, 229, 1, 1, 8353, 4273, 8741, 1, 9137, 1, 1, 443, 269, 5081, 1, 1, 1543, 787, 661, 337, 11681, 5953, 1103, 883, 257, 1, 353, 1, 13537, 1, 2003, 1019, 631, 1, 15013, 449, 1, 1, 1, 281, 16561, 1, 17093, 8681, 1, 1279, 18181, 839, 457, 1, 19301, 1399, 1, 593, 1, 1, 397, 1, 1, 1567, 967, 11273, 22853, 313, 23473, 1699, 1, 421, 853, 1, 1493, 12853, 3719, 1, 26693, 13513, 27361, 1259, 1, 2027, 373, 14533, 439, 647, 30113, 15233, 1, 1, 1, 389, 32261, 1483, 32993, 2383, 1, 17053, 1, 601, 1, 1619, 1, 1, 3343, 1093, 1, 18973, 1667, 2767, 5591, 1, 3631, 20173, 491, 1871, 5939, 2999, 1, 1, 43237, 1, 2593, 1, 1, 613, 1, 797, 1609, 23549, 6791, 1, 1181, 461, 4483, 1, 1, 1, 1, 1, 3061, 26249, 1, 26713, 7699, 1, 54833, 27653, 1, 1223, 56737, 1, 8243, 619, 2551, 29581, 1, 1, 8663, 1, 61637, 31069, 1693, 31573, 1201, 4583, 9239, 2963, 65701, 1, 6067, 33629, 1, 1, 4049, 1, 1889, 1531, 6451, 5107, 1, 3299, 73121, 36833, 1579, 1289, 1, 5419, 76421, 3499, 4561, 2297, 7151, 5659, 11399, 1747, 80933, 1, 1039, 1117, 1, 5987, 84401, 3863, 1031, 643, 86753, 1, 739, 44269, 89137, 4079, 1481, 1229, 1, 1, 821, 881, 1, 47309, 727, 1, 1, 2111, 5749, 1, 98993, 1, 14323, 7207, 101537, 1087, 1, 4703, 104113, 1069, 1, 1, 106721, 1013, 108037, 1, 919, 1, 1, 55681, 4871, 1, 113381, 8147, 1, 57709, 116101, 58393, 1487, 1, 16979, 8539, 1, 3557, 121637, 61169, 3001, 8839, 773, 62581, 11443, 1, 127301, 1, 1, 1321, 1, 1, 947, 1, 7829, 1, 1, 1109, 1, 68389, 1217, 1, 2837, 1, 1, 1, 12911, 71389, 143537, 937, 1, 4289, 3119, 73681, 3613, 74453, 21383, 977, 151237, 2621, 1, 1873, 154373, 11083, 22279, 1, 1, 4657, 1, 1, 22963, 1049, 907, 3547, 163973, 82393, 165601, 11887, 3413, 7639, 1, 1601, 1, 1823, 1447, 1, 173861, 1, 6053, 3041, 16111, 1, 1, 8171, 1657, 2213, 7927, 1367, 1, 1, 1, 1, 1, 1777, 17203, 1, 27283, 95929, 192737, 1, 2903, 1, 2549, 14083, 1, 9043, 1, 3461, 1, 1, 29063, 1231, 205253, 9371, 207073, 103993, 2713, 2141, 2539, 105829, 4523, 106753, 214433, 15383, 1, 6389, 1, 1, 1583, 1, 1, 15919, 1, 2741, 1723, 10303, 1, 1, 1, 115249, 231461, 1, 13729, 1, 33619, 16879, 1, 119129, 239237, 1, 10487, 17299, 34739, 122081, 3659, 5351, 247141, 11279, 35591, 1051, 1, 1, 253153, 127081, 255173, 1, 1, 1, 23567, 3517, 261281, 11923, 37619, 1, 6473, 133213, 15733, 1, 11719, 1, 38803, 136333, 1, 1, 275813, 138433, 39703, 19927, 280037, 140549, 1, 141613, 284293, 1, 1, 4957, 12547, 144829, 290737, 2753, 41843, 1, 295073, 1, 1, 149173, 8093, 21467, 1, 1, 1, 8969, 27823, 1409, 1, 1, 310501, 155809, 312737, 6823, 8513, 1, 45319, 1, 1, 160313, 29251, 9497, 1, 23227, 1, 163733, 1, 164881, 1, 23719, 1, 15199, 1, 2131, 337861, 1, 2113, 1, 20149, 1, 1, 7523, 31567, 1, 49943, 175393, 1, 6089, 354353, 1, 1, 1, 359137, 1489, 361541, 1, 1, 26083, 7477, 1, 368801, 1, 371237, 186229, 1, 1, 376133, 188681, 378593, 189913, 381061, 1, 1, 11317, 10433, 1, 13397, 3677, 1, 28019, 393521, 197389, 1, 18059, 9721, 28559, 5209, 8747, 10909, 11909, 23893, 4969, 58391, 29287, 1, 3079, 3797, 1, 1, 1, 59863, 210169, 8971, 211469, 14629, 1, 1, 1, 39043, 215393, 18787, 5857, 5503, 31147, 62483, 219353, 1, 220681, 9419, 20183, 1, 31907, 2503, 13217, 26513, 1, 7433, 2953, 2833, 228733, 1, 230089, 11257, 1, 2287, 1, 1, 234181, 42703, 235553, 27793, 1, 67891, 1427, 478001, 1, 480773, 1, 1867, 1, 486341, 1, 1, 245269, 5927, 1, 1, 14593, 29269, 1, 45491, 3023, 1, 1, 1801, 5399, 12413, 255181, 511793, 5237, 73523, 23459, 1, 6329, 1, 15349, 74759, 37483, 526213, 11471, 529121, 4349, 4397, 1, 76423, 1, 2143, 4421, 1, 1, 1, 1, 1, 24919, 549701, 275593, 1, 1721, 79379, 7529, 4019, 280069, 24419, 1, 7333, 1, 567653, 1, 33569, 16829, 5077, 1, 1753, 289129, 1, 26423, 8699, 292181, 1, 41959, 1, 10181, 16001, 1, 2371, 1, 1, 299881, 601313, 1, 1, 302989, 1, 1, 610661, 1, 1, 1, 616933, 44179, 8053, 310829, 1, 1, 7547, 313993, 89939, 45083, 1, 10937, 21929, 28979, 639137, 45767, 13109, 7853, 1759, 323581, 12241, 1, 5479, 46687, 59567, 328429, 3943, 330053, 28771, 1, 94999, 2237, 1, 14563, 671537, 1, 1, 1, 1, 19993, 23497, 11777, 1, 4457, 1, 5147, 62851, 1, 5303, 348181, 99719, 1, 14923, 351529, 64067, 1, 1811, 1, 1, 1, 714853, 358273, 718241, 2011, 103091, 1, 725041, 363373, 1, 12589, 25237, 1, 1, 1, 32119, 1, 1, 1, 15217, 1, 749093, 375413, 9067, 2879, 4177, 1, 108503, 34603, 763013, 1, 4099, 384133, 2683, 55127, 773537, 10477, 7129, 16931, 2447, 1, 112019, 1, 1, 394729, 14929, 396509, 6679, 3347, 798373, 1, 1, 5087, 1, 57667, 1, 8627, 1877, 407273, 816353, 409081, 1, 58699, 823601, 2207, 48661, 1, 1, 1, 4111, 418181, 838193, 38183, 1, 10289, 1, 60527, 849221, 425533, 852913, 427381, 1, 3607, 11173, 18743, 864037, 39359, 1, 434813, 5413, 62383, 875233, 3881, 1, 40039, 4877, 1, 1, 1, 52369, 446081, 1931, 1, 2729, 9181, 81967, 5443, 39367, 41243, 909253, 1, 130439, 19891, 11047, 1, 1, 2467, 18869, 66179, 7673, 1, 6257, 11393, 936161, 1,

6. Sequence of the polynom (only primes)

37, 11, 79, 67, 17, 7, 41, 167, 379, 211, 463, 251, 607, 29, 23, 347, 719, 53, 109, 47, 827, 419, 61, 859, 431, 863, 113, 293, 181, 433, 83, 409, 179, 673, 131, 769, 1637, 263, 139, 2053, 2273, 1193, 1429, 271, 1553, 499, 3761, 1949, 367, 2089, 149, 659, 2381, 227, 2689, 5861, 563, 3181, 479, 983, 3529, 7237, 3709, 691, 229, 8353, 4273, 8741, 9137, 443, 269, 5081, 1543, 787, 661, 337, 11681, 5953, 1103, 883, 257, 353, 13537, 2003, 1019, 631, 15013, 449, 281, 16561, 17093, 8681, 1279, 18181, 839, 457, 19301, 1399, 593, 397, 1567, 967, 11273, 22853, 313, 23473, 1699, 421, 853, 1493, 12853, 3719, 26693, 13513, 27361, 1259, 2027, 373, 14533, 439, 647, 30113, 15233, 389, 32261, 1483, 32993, 2383, 17053, 601, 1619, 3343, 1093, 18973, 1667, 2767, 5591, 3631, 20173, 491, 1871, 5939, 2999, 43237, 2593, 613, 797, 1609, 23549, 6791, 1181, 461, 4483, 3061, 26249, 26713, 7699, 54833, 27653, 1223, 56737, 8243, 619, 2551, 29581, 8663, 61637, 31069, 1693, 31573, 1201, 4583, 9239, 2963, 65701, 6067, 33629, 4049, 1889, 1531, 6451, 5107, 3299, 73121, 36833, 1579, 1289, 5419, 76421, 3499, 4561, 2297, 7151, 5659, 11399, 1747, 80933, 1039, 1117, 5987, 84401, 3863, 1031, 643, 86753, 739, 44269, 89137, 4079, 1481, 1229, 821, 881, 47309, 727, 2111, 5749, 98993, 14323, 7207, 101537, 1087, 4703, 104113, 1069, 106721, 1013, 108037, 919, 55681, 4871, 113381, 8147, 57709, 116101, 58393, 1487, 16979, 8539, 3557, 121637, 61169, 3001, 8839, 773, 62581, 11443, 127301, 1321, 947, 7829, 1109, 68389, 1217, 2837, 12911, 71389, 143537, 937, 4289, 3119, 73681, 3613, 74453, 21383, 977, 151237, 2621, 1873, 154373, 11083, 22279, 4657, 22963, 1049, 907, 3547, 163973, 82393, 165601, 11887, 3413, 7639, 1601, 1823, 1447, 173861, 6053, 3041, 16111, 8171, 1657, 2213, 7927, 1367, 1777, 17203, 27283, 95929, 192737, 2903, 2549, 14083, 9043, 3461, 29063, 1231, 205253, 9371, 207073, 103993, 2713, 2141, 2539, 105829, 4523, 106753, 214433, 15383, 6389, 1583, 15919, 2741, 1723, 10303, 115249, 231461, 13729, 33619, 16879, 119129, 239237, 10487, 17299, 34739, 122081, 3659, 5351, 247141, 11279, 35591, 1051, 253153, 127081, 255173, 23567, 3517, 261281, 11923, 37619, 6473, 133213, 15733, 11719, 38803, 136333, 275813, 138433, 39703, 19927, 280037, 140549, 141613, 284293, 4957, 12547, 144829, 290737, 2753, 41843, 295073, 149173, 8093, 21467, 8969, 27823, 1409, 310501, 155809, 312737, 6823, 8513, 45319, 160313, 29251, 9497, 23227, 163733, 164881, 23719, 15199, 2131, 337861, 2113, 20149, 7523, 31567, 49943, 175393, 6089, 354353, 359137, 1489, 361541, 26083, 7477, 368801, 371237, 186229, 376133, 188681, 378593, 189913, 381061, 11317, 10433, 13397, 3677, 28019, 393521, 197389, 18059, 9721, 28559, 5209, 8747, 10909, 11909, 23893, 4969, 58391, 29287, 3079, 3797, 59863, 210169, 8971, 211469, 14629, 39043, 215393, 18787, 5857, 5503, 31147, 62483, 219353, 220681, 9419, 20183, 31907, 2503, 13217, 26513, 7433, 2953, 2833, 228733, 230089, 11257, 2287, 234181, 42703, 235553, 27793, 67891, 1427, 478001, 480773, 1867, 486341, 245269, 5927, 14593, 29269, 45491, 3023, 1801, 5399, 12413, 255181, 511793, 5237, 73523, 23459, 6329, 15349, 74759, 37483, 526213, 11471, 529121, 4349, 4397, 76423, 2143, 4421, 24919, 549701, 275593, 1721, 79379, 7529, 4019, 280069, 24419, 7333, 567653, 33569, 16829, 5077, 1753, 289129, 26423, 8699, 292181, 41959, 10181, 16001, 2371, 299881, 601313, 302989, 610661, 616933, 44179, 8053, 310829, 7547, 313993, 89939, 45083, 10937, 21929, 28979, 639137, 45767, 13109, 7853, 1759, 323581, 12241, 5479, 46687, 59567, 328429, 3943, 330053, 28771, 94999, 2237, 14563, 671537, 19993, 23497, 11777, 4457, 5147, 62851, 5303, 348181, 99719, 14923, 351529, 64067, 1811, 714853, 358273, 718241, 2011, 103091, 725041, 363373, 12589, 25237, 32119, 15217, 749093, 375413, 9067, 2879, 4177, 108503, 34603, 763013, 4099, 384133, 2683, 55127, 773537, 10477, 7129, 16931, 2447, 112019, 394729, 14929, 396509, 6679, 3347, 798373, 5087, 57667, 8627, 1877, 407273, 816353, 409081, 58699, 823601, 2207, 48661, 4111, 418181, 838193, 38183, 10289, 60527, 849221, 425533, 852913, 427381, 3607, 11173, 18743, 864037, 39359, 434813, 5413, 62383, 875233, 3881, 40039, 4877, 52369, 446081, 1931, 2729, 9181, 81967, 5443, 39367, 41243, 909253, 130439, 19891, 11047, 2467, 18869, 66179, 7673, 6257, 11393, 936161,

7. Distribution of the primes

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

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)
11010821.0000000.8000000.2000000.0000000.0000000.000000
21004231110.4200000.3100000.1100004.2000003.8750005.500000
31.0006362324040.6360000.2320000.40400015.1428587.48387136.727272
410.0006.7771.7515.0260.6777000.1751000.50260010.6556617.54741412.440594
5100.00068.64613.35755.2890.6864600.1335700.55289010.1292617.62821211.000597
61.000.000688.307108.824579.4830.6883070.1088240.57948310.0269068.14733910.480982
710.000.0006.888.479916.5445.971.9350.6888480.0916540.59719310.0078588.42225910.305626
8100.000.00068.933.4397.937.03060.996.4090.6893340.0793700.60996410.0070638.65973710.213843
91.000.000.000689.698.03769.926.858619.771.1790.6896980.0699270.61977110.0052768.81020510.160782
1010.000.000.0006.899.856.886625.198.6336.274.658.2530.6899860.0625200.62746610.0041708.94075210.124153


ABCDEFGHIJK
exponent =log2 (x)<=xnumber of all primesnumber of primes p = f(x) number of primes p | f(x) C/xD/xE/xC(n) / C(n-1)D(n) / D(n-1)E(n) / E(n-1)
123301.5000001.5000000.0000000.0000000.0000000.000000
245411.2500001.0000000.2500001.6666671.333333inf
388621.0000000.7500000.2500001.6000001.5000002.000000
416121020.7500000.6250000.1250001.5000001.6666671.000000
532231760.7187500.5312500.1875001.9166671.7000003.000000
664241860.3750000.2812500.0937501.0434781.0588241.000000
71285942170.4609380.3281250.1328122.4583332.3333332.833333
825613870680.5390620.2734380.2656252.3389831.6666674.000000
95123111251860.6074220.2441410.3632812.2536231.7857142.735294
101.0246482364120.6328120.2304690.4023442.0836011.8880002.215054
112.0481.3374359020.6528320.2124020.4404302.0632721.8432202.189320
124.0962.7407941.9460.6689450.1938480.4750982.0493641.8252872.157428
138.1925.5381.4684.0700.6760250.1791990.4968262.0211681.8488662.091470
1416.38411.1692.6928.4770.6817020.1643070.5173952.0167931.8337872.082801
1532.76822.4574.94817.5090.6853330.1510010.5343322.0106541.8380392.065471
1665.53644.9759.15635.8190.6862640.1397090.5465552.0027161.8504452.045748
17131.07290.03117.08572.9460.6868820.1303480.5565342.0018011.8659902.036517
18262.144180.36532.014148.3510.6880380.1221240.5659142.0033661.8738072.033710
19524.288360.66360.290300.3730.6879100.1149940.5729161.9996291.8832392.024745
201.048.576721.710113.642608.0680.6882760.1083770.5798992.0010651.8849232.024376
212.097.1521.443.827215.1681.228.6590.6884700.1026000.5858702.0005641.8933842.020595
224.194.3042.888.828408.2412.480.5870.6887500.0973320.5914182.0008131.8973132.018939
238.388.6085.778.070777.9065.000.1640.6888000.0927340.5960662.0001431.9055072.015718
2416.777.21611.558.9991.485.86610.073.1330.6889700.0885650.6004062.0004951.9100842.014560
2533.554.43223.122.5602.845.32820.277.2320.6891060.0847970.6043092.0003951.9149292.013001
2667.108.86446.255.9555.452.45340.803.5020.6892670.0812480.6080202.0004691.9162832.012282
27134.217.72892.528.39010.470.48282.057.9080.6893900.0780110.6113792.0003561.9203252.011050
28268.435.456185.089.65920.135.572164.954.0870.6895130.0750110.6145022.0003551.9230802.010216
29536.870.912370.228.16638.786.062331.442.1040.6896040.0722450.6173592.0002641.9262462.009299
301.073.741.824740.569.08274.809.804665.759.2780.6897090.0696720.6200372.0003051.9287812.008674
312.147.483.6481.481.333.030144.484.1151.336.848.9150.6897990.0672810.6225192.0002631.9313522.008006
324.294.967.2962.963.039.826279.379.8312.683.659.9950.6898860.0650480.6248382.0002521.9336372.007452
338.589.934.5925.926.781.593540.817.7995.385.963.7940.6899680.0629590.6270092.0002371.9357802.006947
3417.179.869.18411.854.922.6971.048.012.39810.806.910.2990.6900470.0610020.6290452.0002291.9378292.006495
3534.359.738.36823.712.423.0372.032.814.47521.679.608.5620.6901220.0591630.6309602.0002171.9396852.006088
3668.719.476.73647.429.792.2063.946.633.10143.483.159.1050.6901940.0574310.6327632.0002081.9414632.005717


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
123210111
244310211
386420312
41610730514
53217890917
664188100927
7128422319139137
8256703733279277
95121256461549557
101.02423611811810691147
112.04843522321220592147
124.09679441038439193877
138.1921.46875970972397297
1416.3842.6921.3721.3201.32591.3517
1532.7684.9482.4922.4562.45992.4737
1665.5369.1564.5804.5764.55794.5837
17131.07217.0858.5618.5248.52798.5427
18262.14432.01416.09015.92416.074915.9247
19524.28860.29030.33029.96030.117930.1577
201.048.576113.64257.03956.60356.811956.8157
212.097.152215.168108.067107.101107.5969107.5567
224.194.304408.241204.933203.308204.1049204.1217
238.388.608777.906390.594387.312389.2049388.6867
2416.777.2161.485.866746.085739.781743.6499742.2017
2533.554.4322.845.3281.428.6561.416.6721.423.39191.421.9217
2667.108.8645.452.4532.736.7032.715.7502.727.33792.725.1007
27134.217.72810.470.4825.253.2915.217.1915.234.70395.235.7637
28268.435.45620.135.57210.098.44210.037.13010.067.568910.067.9887
29536.870.91238.786.06219.453.42819.332.63419.392.236919.393.8107
301.073.741.82474.809.80437.513.71737.296.08737.401.761937.408.0277
312.147.483.648144.484.11572.446.90872.037.20772.241.763972.242.3367
324.294.967.296279.379.831140.075.142139.304.689139.693.2419139.686.5747
338.589.934.592540.817.799271.128.862269.688.937270.421.9489270.395.8357
3417.179.869.1841.048.012.398525.369.752522.642.646524.024.6629523.987.7207
3534.359.738.3682.032.814.4751.018.973.0601.013.841.4151.016.409.27991.016.405.1807
3668.719.476.7363.946.633.1011.978.141.7601.968.491.3411.973.343.18191.973.289.9047


ABCDEFGHI
exponent =log2 (x) <=xnumber of primes with p|f(x) number of primes with p=f(x) and p%6=1 number of primes with p=f(x) and p%6=5 number of primes with p=f(x) and p%8=1 number of primes with p=f(x) and p%8=3 number of primes with p=f(x) and p%8=5 number of primes with p=f(x) and p%8=7
120000000
241011000
382022000
4162022000
5326242031
6646242031
7128176112636
825668333510201325
9512186909632553663
101.0244122042088112278131
112.048902437465179260192271
124.0961.946981965423550419554
138.1924.0702.0092.0618781.1399021.151
1416.3848.4774.2154.2621.8532.3481.9032.373
1532.76817.5098.7748.7353.8914.8213.9474.850
1665.53635.81917.85217.9678.0279.7908.2219.781
17131.07272.94636.45536.49116.54119.72116.87419.810
18262.144148.35173.93074.42134.07639.85534.35240.068
19524.288300.373149.836150.53769.22080.66169.89080.602
201.048.576608.068303.600304.468141.328162.382141.826162.532
212.097.1521.228.659613.441615.218287.091327.119287.933326.516
224.194.3042.480.5871.239.5341.241.053582.328657.583583.024657.652
238.388.6085.000.1642.499.6312.500.5331.178.5721.321.6241.178.6851.321.283
2416.777.21610.073.1335.036.4395.036.6942.381.5702.655.8222.381.4642.654.277
2533.554.43220.277.23210.137.76210.139.4704.808.9445.329.2454.811.0405.328.003
2667.108.86440.803.50220.399.27520.404.2279.707.81910.696.5509.705.66010.693.473
27134.217.72882.057.90841.026.60541.031.30319.571.73321.456.74319.568.72121.460.711
28268.435.456164.954.08782.470.97882.483.10939.427.71443.048.56839.426.47943.051.326
29536.870.912331.442.104165.691.740165.750.36479.375.85986.349.71179.371.00386.345.531
301.073.741.824665.759.278332.836.651332.922.627159.727.611173.158.642159.722.256173.150.769
312.147.483.6481.336.848.915668.381.891668.467.024321.276.527347.153.842321.265.502347.153.044
324.294.967.2962.683.659.9951.341.739.4111.341.920.584645.928.739695.934.932645.914.816695.881.508
338.589.934.5925.385.963.7942.692.852.5482.693.111.2461.298.175.3231.394.835.6241.298.183.3831.394.769.464
3417.179.869.18410.806.910.2995.403.163.1635.403.747.1362.608.184.4872.795.264.4542.608.282.3232.795.179.035
3534.359.738.36821.679.608.56210.839.317.43510.840.291.1275.238.780.0855.601.099.8305.238.782.2375.600.946.410
3668.719.476.73643.483.159.10521.740.676.07021.742.483.03510.519.552.17411.222.047.71410.519.637.76311.221.921.454


8. Check for existing Integer Sequences by OEIS

Found in Database : 37, 11, 79, 67, 17, 7, 41, 167, 379, 211, 463, 251, 1, 1, 607, 29, 23, 347, 719, 53,
Found in Database : 37, 11, 79, 67, 17, 7, 41, 167, 379, 211, 463, 251, 607, 29, 23, 347, 719, 53, 109, 47, 827, 419, 61, 859, 431, 863,
Found in Database : 7, 11, 17, 23, 29, 37, 41, 47, 53, 61, 67, 79, 83, 109, 113, 131, 139, 149,