Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:19:34
Deutsch
20.Apr 2024

Polynom = x^2-53x+13

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) = 13 = 13
f(1) = 39 = 3*13
f(2) = 89 = 89
f(3) = 137 = 137
f(4) = 183 = 3*61
f(5) = 227 = 227
f(6) = 269 = 269
f(7) = 309 = 3*103
f(8) = 347 = 347
f(9) = 383 = 383
f(10) = 417 = 3*139
f(11) = 449 = 449
f(12) = 479 = 479
f(13) = 507 = 3*13*13
f(14) = 533 = 13*41
f(15) = 557 = 557
f(16) = 579 = 3*193
f(17) = 599 = 599
f(18) = 617 = 617
f(19) = 633 = 3*211
f(20) = 647 = 647
f(21) = 659 = 659
f(22) = 669 = 3*223
f(23) = 677 = 677
f(24) = 683 = 683
f(25) = 687 = 3*229
f(26) = 689 = 13*53
f(27) = 689 = 13*53
f(28) = 687 = 3*229
f(29) = 683 = 683
f(30) = 677 = 677
f(31) = 669 = 3*223
f(32) = 659 = 659
f(33) = 647 = 647
f(34) = 633 = 3*211
f(35) = 617 = 617
f(36) = 599 = 599
f(37) = 579 = 3*193
f(38) = 557 = 557
f(39) = 533 = 13*41
f(40) = 507 = 3*13*13
f(41) = 479 = 479
f(42) = 449 = 449
f(43) = 417 = 3*139
f(44) = 383 = 383
f(45) = 347 = 347
f(46) = 309 = 3*103
f(47) = 269 = 269
f(48) = 227 = 227
f(49) = 183 = 3*61
f(50) = 137 = 137
f(51) = 89 = 89
f(52) = 39 = 3*13
f(53) = 13 = 13
f(54) = 67 = 67
f(55) = 123 = 3*41
f(56) = 181 = 181
f(57) = 241 = 241
f(58) = 303 = 3*101
f(59) = 367 = 367
f(60) = 433 = 433
f(61) = 501 = 3*167
f(62) = 571 = 571
f(63) = 643 = 643
f(64) = 717 = 3*239
f(65) = 793 = 13*61
f(66) = 871 = 13*67
f(67) = 951 = 3*317
f(68) = 1033 = 1033
f(69) = 1117 = 1117
f(70) = 1203 = 3*401
f(71) = 1291 = 1291
f(72) = 1381 = 1381
f(73) = 1473 = 3*491
f(74) = 1567 = 1567
f(75) = 1663 = 1663
f(76) = 1761 = 3*587
f(77) = 1861 = 1861
f(78) = 1963 = 13*151
f(79) = 2067 = 3*13*53
f(80) = 2173 = 41*53
f(81) = 2281 = 2281
f(82) = 2391 = 3*797
f(83) = 2503 = 2503
f(84) = 2617 = 2617
f(85) = 2733 = 3*911
f(86) = 2851 = 2851
f(87) = 2971 = 2971
f(88) = 3093 = 3*1031
f(89) = 3217 = 3217
f(90) = 3343 = 3343
f(91) = 3471 = 3*13*89
f(92) = 3601 = 13*277
f(93) = 3733 = 3733
f(94) = 3867 = 3*1289
f(95) = 4003 = 4003
f(96) = 4141 = 41*101
f(97) = 4281 = 3*1427
f(98) = 4423 = 4423
f(99) = 4567 = 4567
f(100) = 4713 = 3*1571

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

f(0)=13
f(1)=3
f(2)=89
f(3)=137
f(4)=61
f(5)=227
f(6)=269
f(7)=103
f(8)=347
f(9)=383
f(10)=139
f(11)=449
f(12)=479
f(13)=1
f(14)=41
f(15)=557
f(16)=193
f(17)=599
f(18)=617
f(19)=211
f(20)=647
f(21)=659
f(22)=223
f(23)=677
f(24)=683
f(25)=229
f(26)=53
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)=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)=67
f(55)=1
f(56)=181
f(57)=241
f(58)=101
f(59)=367
f(60)=433
f(61)=167
f(62)=571
f(63)=643
f(64)=239
f(65)=1
f(66)=1
f(67)=317
f(68)=1033
f(69)=1117
f(70)=401
f(71)=1291
f(72)=1381
f(73)=491
f(74)=1567
f(75)=1663
f(76)=587
f(77)=1861
f(78)=151
f(79)=1
f(80)=1
f(81)=2281
f(82)=797
f(83)=2503
f(84)=2617
f(85)=911
f(86)=2851
f(87)=2971
f(88)=1031
f(89)=3217
f(90)=3343
f(91)=1
f(92)=277
f(93)=3733
f(94)=1289
f(95)=4003
f(96)=1
f(97)=1427
f(98)=4423
f(99)=4567

b) Substitution of the polynom
The polynom f(x)=x^2-53x+13 could be written as f(y)= y^2-689.25 with x=y+26.5

c) Backsubstitution Beside by backsubstitution you get an estimation for the huge of the primes with p | f(x) and p < f(x) f'(y)>(2y-1) with with y=x-26.5
f'(x)>2x-54 with x > 26

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

13, 3, 89, 137, 61, 227, 269, 103, 347, 383, 139, 449, 479, 1, 41, 557, 193, 599, 617, 211, 647, 659, 223, 677, 683, 229, 53, 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, 67, 1, 181, 241, 101, 367, 433, 167, 571, 643, 239, 1, 1, 317, 1033, 1117, 401, 1291, 1381, 491, 1567, 1663, 587, 1861, 151, 1, 1, 2281, 797, 2503, 2617, 911, 2851, 2971, 1031, 3217, 3343, 1, 277, 3733, 1289, 4003, 1, 1427, 4423, 4567, 1571, 4861, 5011, 1721, 409, 421, 1877, 5791, 5953, 2039, 1, 6451, 2207, 6793, 6967, 2381, 7321, 577, 197, 7867, 8053, 1, 8431, 8623, 2939, 9013, 1, 3137, 9613, 9817, 257, 787, 1, 1, 10867, 11083, 3767, 281, 11743, 3989, 1, 12421, 4217, 991, 1009, 4451, 13591, 13831, 4691, 1, 14563, 4937, 15061, 15313, 5189, 15823, 1237, 419, 16603, 1, 5711, 17401, 431, 5981, 18217, 18493, 6257, 19051, 19333, 503, 1531, 331, 6827, 20773, 21067, 7121, 21661, 21961, 1, 22567, 1, 7727, 1, 1831, 8039, 461, 467, 1, 379, 25717, 8681, 26371, 26701, 9011, 27367, 2131, 719, 1, 28723, 9689, 439, 29761, 10037, 743, 30817, 10391, 31531, 31891, 827, 1, 32983, 11117, 33721, 1, 11489, 34843, 35221, 11867, 35983, 887, 12251, 2857, 2887, 12641, 38317, 38713, 13037, 39511, 1, 1, 1, 41131, 1, 41953, 3259, 1097, 43201, 1, 1, 839, 44893, 15107, 45751, 46183, 1, 1, 47491, 1229, 1, 48817, 16421, 49711, 487, 16871, 1, 769, 17327, 1, 52903, 17789, 1, 4177, 18257, 55243, 55717, 18731, 56671, 853, 19211, 653, 58603, 19697, 59581, 4621, 1553, 1, 61561, 1, 62563, 63067, 21191, 64081, 64591, 21701, 65617, 1613, 1709, 5167, 1, 22739, 68743, 1307, 1, 1153, 70867, 23801, 71941, 72481, 1, 5659, 5701, 607, 75211, 1, 25439, 76873, 77431, 25997, 78553, 1297, 26561, 80251, 6217, 2087, 81967, 1, 1, 83701, 947, 28289, 85453, 619, 1, 87223, 641, 2267, 1, 89611, 30071, 1, 91423, 30677, 92641, 93253, 1, 94483, 95101, 31907, 7411, 7459, 32531, 98221, 2411, 33161, 1889, 1901, 33797, 102031, 102673, 34439, 103963, 1, 2699, 105913, 1747, 1, 107881, 108541, 1, 1, 110533, 1, 111871, 112543, 2903, 8761, 114571, 937, 115933, 1, 1, 117991, 118681, 39791, 120067, 120763, 40487, 9397, 727, 41189, 823, 124981, 41897, 3083, 1, 42611, 128551, 1, 43331, 1951, 10111, 3389, 1, 133633, 44789, 809, 135841, 859, 2591, 1367, 46271, 2083, 1, 3617, 10909, 142573, 47777, 1619, 3533, 48539, 146383, 147151, 49307, 148693, 1091, 821, 11617, 11677, 1, 1489, 154153, 51647, 155731, 811, 1279, 158113, 1, 1, 1063, 12409, 4157, 2671, 163741, 54851, 165367, 166183, 55667, 1, 168643, 56489, 170293, 1, 4409, 13291, 173617, 58151, 175291, 1979, 58991, 4337, 3371, 1129, 180361, 181213, 60689, 14071, 1, 61547, 1801, 1, 1, 1373, 1871, 63281, 190717, 4673, 64157, 1, 1, 5003, 196003, 1, 65927, 198673, 199567, 66821, 3301, 907, 1, 204067, 204973, 5279, 15907, 1, 69539, 209533, 919, 70457, 212293, 213217, 1741, 1, 3541, 1, 16759, 16831, 1, 220681, 221623, 74189, 2213, 224461, 1, 4271, 4289, 76091, 5591, 17707, 5927, 232117, 233083, 78017, 1193, 1, 78989, 1, 238921, 79967, 240883, 241867, 1, 18757, 2377, 1223, 246817, 247813, 1, 249811, 250813, 83939, 252823, 1, 84947, 19681, 19759, 1283, 2909, 4261, 86981, 1087, 1453, 88007, 1109, 266083, 1, 268153, 20707, 1, 271273, 272317, 91121, 2003, 275461, 1511, 277567, 278623, 1759, 5297, 281803, 7253, 21841, 2767, 1, 2843, 1, 96431, 2089, 1, 97511, 293617, 294703, 98597, 1, 22921, 99689, 300163, 1, 100787, 303463, 2017, 101891, 306781, 307891, 103001, 310117, 1, 8009, 313471, 7673, 105239, 4729, 317971, 106367, 1, 321367, 1, 323641, 324781, 1, 1, 328213, 1, 4933, 331663, 110939, 333973, 335131, 112097, 337453, 6389, 2137, 26227, 26317, 2791, 5647, 345643, 1, 348001, 349183, 116789, 1, 352741, 117977, 1, 27409, 1, 358711, 359911, 120371, 8837, 363523, 121577, 365941, 1, 122789, 1, 370801, 9539, 28711, 1, 125231, 376921, 378151, 126461, 1481, 381853, 1, 384331, 385573, 128939, 29851, 29947, 1, 1, 9587, 131441, 395581, 5923, 132701, 6547, 2399, 133967, 7607, 1, 1, 406993, 408271, 1, 410833, 6151, 3361, 414691, 1, 139091, 4703, 6883, 10799, 32497, 423763, 141689, 1, 427681, 1, 430303, 431617, 144311, 1913, 435571, 1, 2593, 33811, 1, 442201, 443533, 1, 10883, 447541, 149627, 450223, 1607, 1, 1433, 1, 11717, 458317, 3307, 1, 1, 463753, 1, 466483, 11411, 1, 470593, 5303, 1, 1, 476101, 159161, 1987, 7873, 1, 483031, 2459, 2417, 487213, 488611, 163337, 1, 1, 1, 1, 497041, 166151, 1, 3659, 1, 504121, 3637, 1, 508393, 39217, 13109, 512683, 514117, 171851, 516991, 518431, 173291, 521317, 522763, 174737, 12821, 1, 13553, 40771, 531481, 177647, 534403, 1907, 179111, 538801, 540271, 2029, 543217, 5393, 182057, 1, 1, 3463, 552103, 553591, 185027, 556573, 558067, 1, 561061, 13721, 188021, 565567, 1, 1, 570091, 571603, 191039, 1, 576151, 192557, 3001, 580717, 1, 8713, 2113, 1, 45259, 589903, 197147, 9721, 594523, 198689, 597613, 1, 200237, 1, 603817, 201791, 46687, 46807, 203351, 3169, 1601, 204917, 616321, 2297, 206489, 621043, 622621, 208067, 15263, 48259, 16127, 11897, 11927, 211241, 635317, 4649, 212837, 3833, 641713, 214439, 644923, 6277, 16619, 1, 15887, 217661, 654601, 656221, 219281, 659467, 661093, 220907, 10891, 665983, 1, 51481, 51607, 224177, 674173, 675817, 225821, 679111, 7649, 227471, 2543, 685723, 229127, 689041, 1, 1, 694033, 695701, 232457, 3313, 700717, 234131, 6971, 705751, 235811, 709117, 1, 18269, 1, 715873, 4513, 1, 720961, 1733, 3433, 1, 242591, 4831, 731191, 244301, 56509, 4357, 246017, 739771, 741493, 247739, 1, 746671, 2803, 750133, 751867, 251201, 4523, 58237, 19457, 760567, 18593, 1, 4231, 12583, 2539, 771073, 3923, 258197, 1, 1, 19997, 60127, 783421, 1, 3529, 1, 6427, 792301, 1, 4349, 4049, 799441, 1, 1, 61909, 4013, 1867, 15287, 5107, 813817, 815623, 272477, 819241, 821053, 2663, 824683, 63577, 1, 830143, 831967, 1, 1, 837451, 279761, 3673, 3527, 1, 2011, 848473, 21803, 65551, 3323, 285287, 857713, 859567, 287141, 3803, 21101, 289001, 868867, 3613, 1, 1, 67411, 4799, 1, 1, 2917, 885733, 887617, 1, 891391, 893281, 2897, 897067, 69151, 23099, 902761, 904663, 302189, 1, 1, 7417, 6577, 6067, 306011, 919951, 921871, 23687, 71209, 927643, 309857, 13903, 933433, 1, 2237, 1, 313727, 23003, 1973,

6. Sequence of the polynom (only primes)

13, 3, 89, 137, 61, 227, 269, 103, 347, 383, 139, 449, 479, 41, 557, 193, 599, 617, 211, 647, 659, 223, 677, 683, 229, 53, 67, 181, 241, 101, 367, 433, 167, 571, 643, 239, 317, 1033, 1117, 401, 1291, 1381, 491, 1567, 1663, 587, 1861, 151, 2281, 797, 2503, 2617, 911, 2851, 2971, 1031, 3217, 3343, 277, 3733, 1289, 4003, 1427, 4423, 4567, 1571, 4861, 5011, 1721, 409, 421, 1877, 5791, 5953, 2039, 6451, 2207, 6793, 6967, 2381, 7321, 577, 197, 7867, 8053, 8431, 8623, 2939, 9013, 3137, 9613, 9817, 257, 787, 10867, 11083, 3767, 281, 11743, 3989, 12421, 4217, 991, 1009, 4451, 13591, 13831, 4691, 14563, 4937, 15061, 15313, 5189, 15823, 1237, 419, 16603, 5711, 17401, 431, 5981, 18217, 18493, 6257, 19051, 19333, 503, 1531, 331, 6827, 20773, 21067, 7121, 21661, 21961, 22567, 7727, 1831, 8039, 461, 467, 379, 25717, 8681, 26371, 26701, 9011, 27367, 2131, 719, 28723, 9689, 439, 29761, 10037, 743, 30817, 10391, 31531, 31891, 827, 32983, 11117, 33721, 11489, 34843, 35221, 11867, 35983, 887, 12251, 2857, 2887, 12641, 38317, 38713, 13037, 39511, 41131, 41953, 3259, 1097, 43201, 839, 44893, 15107, 45751, 46183, 47491, 1229, 48817, 16421, 49711, 487, 16871, 769, 17327, 52903, 17789, 4177, 18257, 55243, 55717, 18731, 56671, 853, 19211, 653, 58603, 19697, 59581, 4621, 1553, 61561, 62563, 63067, 21191, 64081, 64591, 21701, 65617, 1613, 1709, 5167, 22739, 68743, 1307, 1153, 70867, 23801, 71941, 72481, 5659, 5701, 607, 75211, 25439, 76873, 77431, 25997, 78553, 1297, 26561, 80251, 6217, 2087, 81967, 83701, 947, 28289, 85453, 619, 87223, 641, 2267, 89611, 30071, 91423, 30677, 92641, 93253, 94483, 95101, 31907, 7411, 7459, 32531, 98221, 2411, 33161, 1889, 1901, 33797, 102031, 102673, 34439, 103963, 2699, 105913, 1747, 107881, 108541, 110533, 111871, 112543, 2903, 8761, 114571, 937, 115933, 117991, 118681, 39791, 120067, 120763, 40487, 9397, 727, 41189, 823, 124981, 41897, 3083, 42611, 128551, 43331, 1951, 10111, 3389, 133633, 44789, 809, 135841, 859, 2591, 1367, 46271, 2083, 3617, 10909, 142573, 47777, 1619, 3533, 48539, 146383, 147151, 49307, 148693, 1091, 821, 11617, 11677, 1489, 154153, 51647, 155731, 811, 1279, 158113, 1063, 12409, 4157, 2671, 163741, 54851, 165367, 166183, 55667, 168643, 56489, 170293, 4409, 13291, 173617, 58151, 175291, 1979, 58991, 4337, 3371, 1129, 180361, 181213, 60689, 14071, 61547, 1801, 1373, 1871, 63281, 190717, 4673, 64157, 5003, 196003, 65927, 198673, 199567, 66821, 3301, 907, 204067, 204973, 5279, 15907, 69539, 209533, 919, 70457, 212293, 213217, 1741, 3541, 16759, 16831, 220681, 221623, 74189, 2213, 224461, 4271, 4289, 76091, 5591, 17707, 5927, 232117, 233083, 78017, 1193, 78989, 238921, 79967, 240883, 241867, 18757, 2377, 1223, 246817, 247813, 249811, 250813, 83939, 252823, 84947, 19681, 19759, 1283, 2909, 4261, 86981, 1087, 1453, 88007, 1109, 266083, 268153, 20707, 271273, 272317, 91121, 2003, 275461, 1511, 277567, 278623, 1759, 5297, 281803, 7253, 21841, 2767, 2843, 96431, 2089, 97511, 293617, 294703, 98597, 22921, 99689, 300163, 100787, 303463, 2017, 101891, 306781, 307891, 103001, 310117, 8009, 313471, 7673, 105239, 4729, 317971, 106367, 321367, 323641, 324781, 328213, 4933, 331663, 110939, 333973, 335131, 112097, 337453, 6389, 2137, 26227, 26317, 2791, 5647, 345643, 348001, 349183, 116789, 352741, 117977, 27409, 358711, 359911, 120371, 8837, 363523, 121577, 365941, 122789, 370801, 9539, 28711, 125231, 376921, 378151, 126461, 1481, 381853, 384331, 385573, 128939, 29851, 29947, 9587, 131441, 395581, 5923, 132701, 6547, 2399, 133967, 7607, 406993, 408271, 410833, 6151, 3361, 414691, 139091, 4703, 6883, 10799, 32497, 423763, 141689, 427681, 430303, 431617, 144311, 1913, 435571, 2593, 33811, 442201, 443533, 10883, 447541, 149627, 450223, 1607, 1433, 11717, 458317, 3307, 463753, 466483, 11411, 470593, 5303, 476101, 159161, 1987, 7873, 483031, 2459, 2417, 487213, 488611, 163337, 497041, 166151, 3659, 504121, 3637, 508393, 39217, 13109, 512683, 514117, 171851, 516991, 518431, 173291, 521317, 522763, 174737, 12821, 13553, 40771, 531481, 177647, 534403, 1907, 179111, 538801, 540271, 2029, 543217, 5393, 182057, 3463, 552103, 553591, 185027, 556573, 558067, 561061, 13721, 188021, 565567, 570091, 571603, 191039, 576151, 192557, 3001, 580717, 8713, 2113, 45259, 589903, 197147, 9721, 594523, 198689, 597613, 200237, 603817, 201791, 46687, 46807, 203351, 3169, 1601, 204917, 616321, 2297, 206489, 621043, 622621, 208067, 15263, 48259, 16127, 11897, 11927, 211241, 635317, 4649, 212837, 3833, 641713, 214439, 644923, 6277, 16619, 15887, 217661, 654601, 656221, 219281, 659467, 661093, 220907, 10891, 665983, 51481, 51607, 224177, 674173, 675817, 225821, 679111, 7649, 227471, 2543, 685723, 229127, 689041, 694033, 695701, 232457, 3313, 700717, 234131, 6971, 705751, 235811, 709117, 18269, 715873, 4513, 720961, 1733, 3433, 242591, 4831, 731191, 244301, 56509, 4357, 246017, 739771, 741493, 247739, 746671, 2803, 750133, 751867, 251201, 4523, 58237, 19457, 760567, 18593, 4231, 12583, 2539, 771073, 3923, 258197, 19997, 60127, 783421, 3529, 6427, 792301, 4349, 4049, 799441, 61909, 4013, 1867, 15287, 5107, 813817, 815623, 272477, 819241, 821053, 2663, 824683, 63577, 830143, 831967, 837451, 279761, 3673, 3527, 2011, 848473, 21803, 65551, 3323, 285287, 857713, 859567, 287141, 3803, 21101, 289001, 868867, 3613, 67411, 4799, 2917, 885733, 887617, 891391, 893281, 2897, 897067, 69151, 23099, 902761, 904663, 302189, 7417, 6577, 6067, 306011, 919951, 921871, 23687, 71209, 927643, 309857, 13903, 933433, 2237, 313727, 23003, 1973,

7. Distribution of the primes

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

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)
11011831.1000000.8000001.100000
21006341220.6300000.4100000.6300005.7272735.1250007.333333
31.0007893394500.7890000.3390000.78900012.5238098.26829220.454546
410.0007.9312.4775.4540.7931000.2477000.79310010.0519657.30678512.120000
5100.00077.67318.86858.8050.7767300.1886800.7767309.7935947.61727910.781995
61.000.000761.492154.921606.5710.7614920.1549210.7614929.8038198.21078010.314957
710.000.0007.512.7921.306.5696.206.2230.7512790.1306570.7512799.8658858.43377610.231651
8100.000.00074.366.92111.319.97763.046.9440.7436690.1132000.7436699.8987068.66389610.158666
91.000.000.000737.807.72599.917.556637.890.1690.7378080.0999180.7378089.9211828.82665610.117702
1010.000.000.0007.331.893.725894.098.1696.437.795.5560.7331890.0894100.7331899.9374058.94835910.092325


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.000000
245411.2500001.0000000.2500001.6666671.333333inf
389721.1250000.8750000.2500001.8000001.7500002.000000
416161151.0000000.6875000.3125001.7777781.5714292.500000
532261790.8125000.5312500.2812501.6250001.5454551.800000
6643423110.5312500.3593750.1718751.3076921.3529411.222222
71288755320.6796880.4296880.2500002.5588242.3913042.909091
8256190103870.7421880.4023440.3398442.1839081.8727272.718750
95123981852130.7773440.3613280.4160162.0947371.7961162.448276
101.0248083464620.7890620.3378910.4511722.0301511.8702702.169014
112.0481.6386191.0190.7998050.3022460.4975592.0272281.7890172.205628
124.0963.2691.1372.1320.7980960.2775880.5205081.9957261.8368342.092247
138.1926.5252.0764.4490.7965090.2534180.5430911.9960231.8258582.086773
1416.38412.9683.8149.1540.7915040.2327880.5587161.9874331.8371872.057541
1532.76825.7137.00318.7100.7846980.2137150.5709841.9828041.8361302.043915
1665.53651.12712.87638.2510.7801360.1964720.5836641.9883721.8386412.044415
17131.072101.55124.08877.4630.7747730.1837770.5909961.9862501.8707672.025124
18262.144201.69245.336156.3560.7693940.1729430.5964511.9861151.8820992.018461
19524.288401.14785.624315.5230.7651270.1633150.6018121.9889091.8886542.017978
201.048.576798.111161.752636.3590.7611380.1542590.6068791.9895721.8890962.016839
212.097.1521.589.443306.2071.283.2360.7579050.1460110.6118951.9915061.8930652.016528
224.194.3043.165.999581.6962.584.3030.7548330.1386870.6161461.9918921.8996822.013895
238.388.6086.307.9611.108.5285.199.4330.7519680.1321470.6198211.9924081.9056832.011929
2416.777.21612.572.7942.118.44710.454.3470.7493970.1262690.6231281.9931631.9110452.010671
2533.554.43225.064.9114.055.12921.009.7820.7469930.1208520.6261401.9935831.9141992.009670
2667.108.86449.984.6377.777.79942.206.8380.7448290.1158980.6289311.9942081.9180152.008914
27134.217.72899.702.22814.940.77484.761.4540.7428390.1113170.6315221.9946571.9209512.008240
28268.435.456198.906.49828.749.943170.156.5550.7409840.1071020.6338831.9950061.9242612.007476
29536.870.912396.883.72655.399.312341.484.4140.7392540.1031890.6360641.9953281.9269362.006884
301.073.741.824792.046.238106.895.424685.150.8140.7376510.0995540.6380961.9956631.9295442.006390
312.147.483.6481.580.899.330206.507.0161.374.392.3140.7361640.0961620.6400011.9959691.9318602.005970
324.294.967.2963.155.807.825399.414.0922.756.393.7330.7347690.0929960.6417731.9962101.9341432.005536
338.589.934.5926.300.407.409773.375.7125.527.031.6970.7334640.0900330.6434311.9964481.9362762.005168
3417.179.869.18412.579.737.7231.499.069.60311.080.668.1200.7322370.0872570.6449801.9966551.9383462.004813


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
123111011
244122011
387152221
41611193233
532171154445
664237156656
712855391513131316
8256103871525262428
95121851691545464747
101.0243463301587838987
112.04861960315163147150159
124.0961.1371.12115292277278290
138.1922.0762.06015542499523512
1416.3843.8143.79815981951958924
1532.7687.0036.987151.7871.7501.7421.724
1665.53612.87612.860153.2703.2053.1773.224
17131.07224.08824.072156.0576.0225.9896.020
18262.14445.33645.3201511.41511.24211.33311.346
19524.28885.62485.6081521.48621.28121.41521.442
201.048.576161.752161.7361540.55740.36340.54240.290
212.097.152306.207306.1911576.91976.30776.52576.456
224.194.304581.696581.68015145.916145.224145.467145.089
238.388.6081.108.5281.108.51215277.659277.115277.119276.635
2416.777.2162.118.4472.118.43115529.690530.276529.807528.674
2533.554.4324.055.1294.055.113151.014.1721.014.7101.013.6071.012.640
2667.108.8647.777.7997.777.783151.944.6911.944.7571.944.7871.943.564
27134.217.72814.940.77414.940.758153.735.4243.734.2593.735.0483.736.043
28268.435.45628.749.94328.749.927157.186.8057.185.8427.189.9457.187.351
29536.870.91255.399.31255.399.2961513.848.63213.847.27113.849.45813.853.951
301.073.741.824106.895.424106.895.4081526.719.13926.722.50426.724.32126.729.460
312.147.483.648206.507.016206.507.0001551.624.68151.624.94251.624.91251.632.481
324.294.967.296399.414.092399.414.0761599.853.36899.845.02199.855.27599.860.428
338.589.934.592773.375.712773.375.69615193.342.909193.331.133193.356.070193.345.600
3417.179.869.1841.499.069.6031.499.069.58715374.763.759374.756.234374.779.734374.769.876


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
241100010
382200011
4165412111
5329722232
66411742234
71283211218798
825687246321221925
95122136414954564756
101.02446215330912712097118
112.0481.019373646253267250249
124.0962.1328151.317520540537535
138.1924.4491.7312.7181.0931.0971.1201.139
1416.3849.1543.6515.5032.2562.2882.2982.312
1532.76818.7107.64611.0644.6024.6464.7454.717
1665.53638.25115.98922.2629.4379.5669.6319.617
17131.07277.46332.90544.55819.22819.37419.42719.434
18262.144156.35667.15389.20338.85639.22339.09539.182
19524.288315.523137.387178.13678.80278.68379.09878.940
201.048.576636.359279.927356.432159.011159.143159.149159.056
212.097.1521.283.236569.299713.937320.582320.866320.868320.920
224.194.3042.584.3031.155.0811.429.222645.563646.199645.782646.759
238.388.6085.199.4332.337.8922.861.5411.299.4401.299.1531.299.8871.300.953
2416.777.21610.454.3474.729.9875.724.3602.614.3442.611.5772.613.8352.614.591
2533.554.43221.009.7829.555.93711.453.8455.251.4515.250.4495.254.8555.253.027
2667.108.86442.206.83819.281.70322.925.13510.551.15610.550.81610.553.20710.551.659
27134.217.72884.761.45438.887.24045.874.21421.187.80621.187.73821.194.75421.191.156
28268.435.456170.156.55578.358.29891.798.25742.533.79342.536.85842.543.72042.542.184
29536.870.912341.484.414157.811.958183.672.45685.357.19685.375.18785.378.04385.373.988
301.073.741.824685.150.814317.658.542367.492.272171.279.223171.286.621171.291.705171.293.265
312.147.483.6481.374.392.314639.103.272735.289.042343.589.382343.587.472343.613.484343.601.976
324.294.967.2962.756.393.7331.285.277.0361.471.116.697689.104.724689.084.999689.108.204689.095.806
338.589.934.5925.527.031.6972.583.813.1002.943.218.5971.381.753.9461.381.754.6821.381.777.8931.381.745.176
3417.179.869.18411.080.668.1205.192.342.7115.888.325.4092.770.174.7482.770.157.1322.770.213.5902.770.122.650


8. Check for existing Integer Sequences by OEIS

Found in Database : 13, 3, 89, 137, 61, 227, 269, 103, 347, 383, 139, 449, 479, 1, 41, 557, 193, 599, 617, 211,
Found in Database : 13, 3, 89, 137, 61, 227, 269, 103, 347, 383, 139, 449, 479, 41, 557, 193, 599, 617, 211, 647, 659, 223, 677, 683, 229, 53,
Found in Database : 3, 13, 41, 53, 61, 67, 89, 101, 103, 137, 139,