Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:40:24
Deutsch
19.Apr 2024

Polynom = x^2+1x-109

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) = 109 = 109
f(1) = 107 = 107
f(2) = 103 = 103
f(3) = 97 = 97
f(4) = 89 = 89
f(5) = 79 = 79
f(6) = 67 = 67
f(7) = 53 = 53
f(8) = 37 = 37
f(9) = 19 = 19
f(10) = 1 = 1
f(11) = 23 = 23
f(12) = 47 = 47
f(13) = 73 = 73
f(14) = 101 = 101
f(15) = 131 = 131
f(16) = 163 = 163
f(17) = 197 = 197
f(18) = 233 = 233
f(19) = 271 = 271
f(20) = 311 = 311
f(21) = 353 = 353
f(22) = 397 = 397
f(23) = 443 = 443
f(24) = 491 = 491
f(25) = 541 = 541
f(26) = 593 = 593
f(27) = 647 = 647
f(28) = 703 = 19*37
f(29) = 761 = 761
f(30) = 821 = 821
f(31) = 883 = 883
f(32) = 947 = 947
f(33) = 1013 = 1013
f(34) = 1081 = 23*47
f(35) = 1151 = 1151
f(36) = 1223 = 1223
f(37) = 1297 = 1297
f(38) = 1373 = 1373
f(39) = 1451 = 1451
f(40) = 1531 = 1531
f(41) = 1613 = 1613
f(42) = 1697 = 1697
f(43) = 1783 = 1783
f(44) = 1871 = 1871
f(45) = 1961 = 37*53
f(46) = 2053 = 2053
f(47) = 2147 = 19*113
f(48) = 2243 = 2243
f(49) = 2341 = 2341
f(50) = 2441 = 2441
f(51) = 2543 = 2543
f(52) = 2647 = 2647
f(53) = 2753 = 2753
f(54) = 2861 = 2861
f(55) = 2971 = 2971
f(56) = 3083 = 3083
f(57) = 3197 = 23*139
f(58) = 3313 = 3313
f(59) = 3431 = 47*73
f(60) = 3551 = 53*67
f(61) = 3673 = 3673
f(62) = 3797 = 3797
f(63) = 3923 = 3923
f(64) = 4051 = 4051
f(65) = 4181 = 37*113
f(66) = 4313 = 19*227
f(67) = 4447 = 4447
f(68) = 4583 = 4583
f(69) = 4721 = 4721
f(70) = 4861 = 4861
f(71) = 5003 = 5003
f(72) = 5147 = 5147
f(73) = 5293 = 67*79
f(74) = 5441 = 5441
f(75) = 5591 = 5591
f(76) = 5743 = 5743
f(77) = 5897 = 5897
f(78) = 6053 = 6053
f(79) = 6211 = 6211
f(80) = 6371 = 23*277
f(81) = 6533 = 47*139
f(82) = 6697 = 37*181
f(83) = 6863 = 6863
f(84) = 7031 = 79*89
f(85) = 7201 = 19*379
f(86) = 7373 = 73*101
f(87) = 7547 = 7547
f(88) = 7723 = 7723
f(89) = 7901 = 7901
f(90) = 8081 = 8081
f(91) = 8263 = 8263
f(92) = 8447 = 8447
f(93) = 8633 = 89*97
f(94) = 8821 = 8821
f(95) = 9011 = 9011
f(96) = 9203 = 9203
f(97) = 9397 = 9397
f(98) = 9593 = 53*181
f(99) = 9791 = 9791
f(100) = 9991 = 97*103

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+1x-109

f(0)=109
f(1)=107
f(2)=103
f(3)=97
f(4)=89
f(5)=79
f(6)=67
f(7)=53
f(8)=37
f(9)=19
f(10)=1
f(11)=23
f(12)=47
f(13)=73
f(14)=101
f(15)=131
f(16)=163
f(17)=197
f(18)=233
f(19)=271
f(20)=311
f(21)=353
f(22)=397
f(23)=443
f(24)=491
f(25)=541
f(26)=593
f(27)=647
f(28)=1
f(29)=761
f(30)=821
f(31)=883
f(32)=947
f(33)=1013
f(34)=1
f(35)=1151
f(36)=1223
f(37)=1297
f(38)=1373
f(39)=1451
f(40)=1531
f(41)=1613
f(42)=1697
f(43)=1783
f(44)=1871
f(45)=1
f(46)=2053
f(47)=113
f(48)=2243
f(49)=2341
f(50)=2441
f(51)=2543
f(52)=2647
f(53)=2753
f(54)=2861
f(55)=2971
f(56)=3083
f(57)=139
f(58)=3313
f(59)=1
f(60)=1
f(61)=3673
f(62)=3797
f(63)=3923
f(64)=4051
f(65)=1
f(66)=227
f(67)=4447
f(68)=4583
f(69)=4721
f(70)=4861
f(71)=5003
f(72)=5147
f(73)=1
f(74)=5441
f(75)=5591
f(76)=5743
f(77)=5897
f(78)=6053
f(79)=6211
f(80)=277
f(81)=1
f(82)=181
f(83)=6863
f(84)=1
f(85)=379
f(86)=1
f(87)=7547
f(88)=7723
f(89)=7901
f(90)=8081
f(91)=8263
f(92)=8447
f(93)=1
f(94)=8821
f(95)=9011
f(96)=9203
f(97)=9397
f(98)=1
f(99)=9791

b) Substitution of the polynom
The polynom f(x)=x^2+1x-109 could be written as f(y)= y^2-109.25 with x=y-0.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+0.5
f'(x)>2x

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

109, 107, 103, 97, 89, 79, 67, 53, 37, 19, 1, 23, 47, 73, 101, 131, 163, 197, 233, 271, 311, 353, 397, 443, 491, 541, 593, 647, 1, 761, 821, 883, 947, 1013, 1, 1151, 1223, 1297, 1373, 1451, 1531, 1613, 1697, 1783, 1871, 1, 2053, 113, 2243, 2341, 2441, 2543, 2647, 2753, 2861, 2971, 3083, 139, 3313, 1, 1, 3673, 3797, 3923, 4051, 1, 227, 4447, 4583, 4721, 4861, 5003, 5147, 1, 5441, 5591, 5743, 5897, 6053, 6211, 277, 1, 181, 6863, 1, 379, 1, 7547, 7723, 7901, 8081, 8263, 8447, 1, 8821, 9011, 9203, 9397, 1, 9791, 1, 10193, 281, 461, 569, 1, 239, 11447, 1, 1, 12101, 12323, 12547, 241, 13001, 1, 13463, 13697, 13933, 383, 14411, 14653, 14897, 797, 15391, 15641, 691, 1, 349, 16661, 16921, 17183, 1, 17713, 17981, 18251, 18523, 18797, 19073, 523, 293, 19913, 1063, 20483, 20771, 21061, 1, 21647, 21943, 967, 22541, 431, 1, 499, 23761, 24071, 659, 24697, 25013, 347, 1, 1367, 26297, 337, 26951, 27281, 521, 27947, 28283, 28621, 28961, 29303, 1289, 1, 30341, 653, 839, 31397, 1, 1, 1709, 32833, 373, 33563, 33931, 34301, 34673, 1, 35423, 35801, 1, 36563, 36947, 1009, 563, 1657, 1, 401, 39293, 2089, 853, 40493, 40897, 1, 787, 577, 42533, 641, 421, 43781, 44201, 44623, 1, 1229, 1, 433, 463, 1, 1, 907, 1, 48953, 1051, 49843, 50291, 50741, 51193, 51647, 52103, 52561, 1433, 677, 739, 54413, 54881, 55351, 55823, 2963, 56773, 57251, 57731, 2531, 743, 59183, 59671, 60161, 1, 1301, 61643, 62141, 1693, 1, 63647, 64153, 64661, 65171, 3457, 1249, 66713, 67231, 67751, 1019, 773, 1, 3037, 70381, 70913, 1931, 71983, 1543, 73061, 827, 1399, 661, 1123, 3989, 76343, 587, 1061, 1, 78571, 79133, 79697, 80263, 80831, 81401, 81973, 1, 823, 83701, 1, 751, 85447, 1, 1, 87211, 87803, 88397, 88993, 89591, 90191, 90793, 91397, 92003, 2503, 1277, 911, 94447, 95063, 1, 1, 941, 97547, 5167, 98801, 99431, 2129, 997, 101333, 953, 102611, 1307, 971, 104543, 2843, 1997, 977, 983, 1609, 108461, 109121, 1, 5813, 4831, 111781, 809, 113123, 113797, 114473, 115151, 115831, 1, 719, 117883, 118571, 1, 119953, 120647, 121343, 122041, 122741, 1, 124147, 124853, 1, 126271, 5521, 1, 128413, 929, 1459, 3529, 131297, 1, 132751, 133481, 134213, 134947, 1, 136421, 7219, 1, 138647, 139393, 1, 140891, 1, 1087, 1, 6257, 144671, 145433, 146197, 1, 1523, 148501, 1321, 1, 3209, 1, 152381, 1579, 153947, 154733, 155521, 2333, 157103, 157897, 4289, 159491, 2029, 161093, 7039, 162703, 1447, 164321, 165133, 165947, 1, 1627, 3583, 859, 170047, 170873, 1667, 4663, 3271, 174197, 1733, 1, 176711, 177553, 178397, 179243, 2467, 7867, 1699, 9613, 183503, 1723, 185221, 3511, 186947, 1, 188681, 1, 1747, 191297, 192173, 193051, 2179, 194813, 195697, 196583, 1091, 1, 10487, 1, 8741, 2269, 202841, 2791, 5531, 205553, 206461, 207371, 208283, 4451, 210113, 1, 1171, 212873, 3191, 214723, 1, 11399, 1, 218447, 2777, 4157, 221261, 9661, 1, 1, 1619, 3373, 226943, 1, 228853, 2909, 230771, 2389, 4951, 233663, 1, 235601, 236573, 237547, 2459, 6473, 2381, 241463, 242447, 243433, 10627, 245411, 246403, 3389, 1787, 2207, 1, 251393, 1, 13337, 5413, 1567, 1, 257447, 1973, 7013, 1, 261523, 2549, 263573, 264601, 1, 266663, 1, 268733, 2671, 1193, 271853, 1, 273943, 3767, 276041, 7489, 278147, 279203, 1, 281321, 282383, 283447, 2659, 1, 286651, 2689, 5449, 3257, 2221, 12697, 15427, 4391, 295283, 2719, 2729, 8069, 3793, 300743, 301841, 302941, 6469, 305147, 306253, 307361, 1, 309583, 310697, 3947, 312931, 16529, 1163, 316297, 1, 1, 319681, 1, 321947, 323083, 1, 4457, 326503, 327647, 1669, 329941, 6247, 7069, 333397, 3449, 17669, 336871, 338033, 1, 9199, 1429, 3533, 14951, 345047, 346223, 347401, 6577, 3463, 350947, 352133, 353321, 1471, 5309, 4889, 1, 359291, 9743, 1, 362897, 364103, 1, 366521, 367733, 368947, 1879, 1, 1559, 373823, 3319, 2707, 1663, 3677, 379963, 20063, 4297, 1, 1, 386153, 387397, 8269, 389891, 2161, 4967, 4423, 7451, 1, 3517, 398683, 17389, 1, 1453, 2477, 21317, 1, 407573, 3121, 3833, 2273, 1327, 1, 415271, 8863, 1, 419147, 1, 421741, 1, 424343, 1, 3917, 3929, 1, 430883, 11681, 433513, 434831, 436151, 437473, 1, 6569, 1571, 442781, 444113, 445447, 2741, 448121, 1, 450803, 1, 1, 1, 4703, 6829, 458897, 20011, 1, 1987, 8761, 4801, 467063, 1, 469801, 471173, 1, 473923, 475301, 476681, 478063, 1, 25307, 13033, 483611, 9151, 486397, 487793, 489191, 490591, 21391, 493397, 494803, 496211, 6299, 499033, 5623, 501863, 1, 1, 13679, 26713, 508973, 510401, 511831, 1, 1, 5011, 517571, 519011, 5153, 521897, 5081, 22817, 4657, 1801, 1499, 530603, 532061, 7963, 1, 536447, 537913, 10177, 540851, 542323, 543797, 1861, 11633, 1951, 549713, 551197, 1, 554171, 555661, 557153, 1, 15139, 10597, 1, 564643, 4073, 567653, 569161, 570671, 572183, 1, 575213, 576731, 578251, 579773, 5333, 5347, 12433, 585881, 587413, 588947, 15959, 31159, 1, 1, 6151, 598193, 599741, 601291, 4337, 604397, 605953, 6263, 609071, 610633, 1, 613763, 7789, 16673, 13159, 11699, 32717, 8537, 1, 626363, 627947, 1, 631121, 8009, 7127, 9491, 3911, 639091, 640691, 4903, 12149, 645503, 647111, 1, 3593, 34313, 653563, 655181, 9803, 14009, 660047, 661673, 663301, 1, 1, 1, 1, 671471, 673111, 6551, 1, 2837, 679691, 681341, 1, 684647, 1, 687961, 689621, 4241, 2557, 14779, 696281, 697951, 2903, 2081, 6221, 30637, 13327, 3119, 19181, 1877, 1, 37619, 716453, 2131, 1, 3019, 3001, 1, 726647, 2099, 6823, 13807, 6491, 6871, 15679, 19963, 740351, 742073, 1, 9437, 1, 748981, 750713, 752447, 754183, 7793, 757661, 6967, 6983, 762893, 9679, 1, 7919, 11491, 771653, 20903, 16493, 2239, 778697, 41077, 782231, 1, 785773, 787547, 789323, 10837, 792881, 5717, 796447, 15061, 1, 801811, 1, 805397, 807193, 808991, 810791, 6203, 42863, 816203, 818011, 17443, 1, 823447, 1, 1867, 828901, 2999, 2677, 3581, 1, 6029, 22699, 841697, 2417, 845371, 1, 44687, 850897, 8443, 8297, 856441, 858293, 18301, 2311, 8387, 865721, 1, 6637, 23549, 1, 11987, 2351, 878797, 880673, 882551, 46549, 886313, 11243, 890083, 13313, 3181, 16901, 897647, 1, 901441, 3877, 8011, 19301, 1, 39607, 912871, 914783, 1, 918613, 48449, 922451, 1, 12689, 928223, 8693, 932081, 9629, 4751, 937883, 8317, 25453, 1, 945647, 9769, 1, 951491, 953443, 41539, 50387, 1, 8819, 8837, 965197, 10867, 969131, 1, 973073, 5387, 977023, 979001, 26513, 1, 984947, 986933, 6067, 9811, 992903, 52363, 14879, 1,

6. Sequence of the polynom (only primes)

109, 107, 103, 97, 89, 79, 67, 53, 37, 19, 23, 47, 73, 101, 131, 163, 197, 233, 271, 311, 353, 397, 443, 491, 541, 593, 647, 761, 821, 883, 947, 1013, 1151, 1223, 1297, 1373, 1451, 1531, 1613, 1697, 1783, 1871, 2053, 113, 2243, 2341, 2441, 2543, 2647, 2753, 2861, 2971, 3083, 139, 3313, 3673, 3797, 3923, 4051, 227, 4447, 4583, 4721, 4861, 5003, 5147, 5441, 5591, 5743, 5897, 6053, 6211, 277, 181, 6863, 379, 7547, 7723, 7901, 8081, 8263, 8447, 8821, 9011, 9203, 9397, 9791, 10193, 281, 461, 569, 239, 11447, 12101, 12323, 12547, 241, 13001, 13463, 13697, 13933, 383, 14411, 14653, 14897, 797, 15391, 15641, 691, 349, 16661, 16921, 17183, 17713, 17981, 18251, 18523, 18797, 19073, 523, 293, 19913, 1063, 20483, 20771, 21061, 21647, 21943, 967, 22541, 431, 499, 23761, 24071, 659, 24697, 25013, 347, 1367, 26297, 337, 26951, 27281, 521, 27947, 28283, 28621, 28961, 29303, 1289, 30341, 653, 839, 31397, 1709, 32833, 373, 33563, 33931, 34301, 34673, 35423, 35801, 36563, 36947, 1009, 563, 1657, 401, 39293, 2089, 853, 40493, 40897, 787, 577, 42533, 641, 421, 43781, 44201, 44623, 1229, 433, 463, 907, 48953, 1051, 49843, 50291, 50741, 51193, 51647, 52103, 52561, 1433, 677, 739, 54413, 54881, 55351, 55823, 2963, 56773, 57251, 57731, 2531, 743, 59183, 59671, 60161, 1301, 61643, 62141, 1693, 63647, 64153, 64661, 65171, 3457, 1249, 66713, 67231, 67751, 1019, 773, 3037, 70381, 70913, 1931, 71983, 1543, 73061, 827, 1399, 661, 1123, 3989, 76343, 587, 1061, 78571, 79133, 79697, 80263, 80831, 81401, 81973, 823, 83701, 751, 85447, 87211, 87803, 88397, 88993, 89591, 90191, 90793, 91397, 92003, 2503, 1277, 911, 94447, 95063, 941, 97547, 5167, 98801, 99431, 2129, 997, 101333, 953, 102611, 1307, 971, 104543, 2843, 1997, 977, 983, 1609, 108461, 109121, 5813, 4831, 111781, 809, 113123, 113797, 114473, 115151, 115831, 719, 117883, 118571, 119953, 120647, 121343, 122041, 122741, 124147, 124853, 126271, 5521, 128413, 929, 1459, 3529, 131297, 132751, 133481, 134213, 134947, 136421, 7219, 138647, 139393, 140891, 1087, 6257, 144671, 145433, 146197, 1523, 148501, 1321, 3209, 152381, 1579, 153947, 154733, 155521, 2333, 157103, 157897, 4289, 159491, 2029, 161093, 7039, 162703, 1447, 164321, 165133, 165947, 1627, 3583, 859, 170047, 170873, 1667, 4663, 3271, 174197, 1733, 176711, 177553, 178397, 179243, 2467, 7867, 1699, 9613, 183503, 1723, 185221, 3511, 186947, 188681, 1747, 191297, 192173, 193051, 2179, 194813, 195697, 196583, 1091, 10487, 8741, 2269, 202841, 2791, 5531, 205553, 206461, 207371, 208283, 4451, 210113, 1171, 212873, 3191, 214723, 11399, 218447, 2777, 4157, 221261, 9661, 1619, 3373, 226943, 228853, 2909, 230771, 2389, 4951, 233663, 235601, 236573, 237547, 2459, 6473, 2381, 241463, 242447, 243433, 10627, 245411, 246403, 3389, 1787, 2207, 251393, 13337, 5413, 1567, 257447, 1973, 7013, 261523, 2549, 263573, 264601, 266663, 268733, 2671, 1193, 271853, 273943, 3767, 276041, 7489, 278147, 279203, 281321, 282383, 283447, 2659, 286651, 2689, 5449, 3257, 2221, 12697, 15427, 4391, 295283, 2719, 2729, 8069, 3793, 300743, 301841, 302941, 6469, 305147, 306253, 307361, 309583, 310697, 3947, 312931, 16529, 1163, 316297, 319681, 321947, 323083, 4457, 326503, 327647, 1669, 329941, 6247, 7069, 333397, 3449, 17669, 336871, 338033, 9199, 1429, 3533, 14951, 345047, 346223, 347401, 6577, 3463, 350947, 352133, 353321, 1471, 5309, 4889, 359291, 9743, 362897, 364103, 366521, 367733, 368947, 1879, 1559, 373823, 3319, 2707, 1663, 3677, 379963, 20063, 4297, 386153, 387397, 8269, 389891, 2161, 4967, 4423, 7451, 3517, 398683, 17389, 1453, 2477, 21317, 407573, 3121, 3833, 2273, 1327, 415271, 8863, 419147, 421741, 424343, 3917, 3929, 430883, 11681, 433513, 434831, 436151, 437473, 6569, 1571, 442781, 444113, 445447, 2741, 448121, 450803, 4703, 6829, 458897, 20011, 1987, 8761, 4801, 467063, 469801, 471173, 473923, 475301, 476681, 478063, 25307, 13033, 483611, 9151, 486397, 487793, 489191, 490591, 21391, 493397, 494803, 496211, 6299, 499033, 5623, 501863, 13679, 26713, 508973, 510401, 511831, 5011, 517571, 519011, 5153, 521897, 5081, 22817, 4657, 1801, 1499, 530603, 532061, 7963, 536447, 537913, 10177, 540851, 542323, 543797, 1861, 11633, 1951, 549713, 551197, 554171, 555661, 557153, 15139, 10597, 564643, 4073, 567653, 569161, 570671, 572183, 575213, 576731, 578251, 579773, 5333, 5347, 12433, 585881, 587413, 588947, 15959, 31159, 6151, 598193, 599741, 601291, 4337, 604397, 605953, 6263, 609071, 610633, 613763, 7789, 16673, 13159, 11699, 32717, 8537, 626363, 627947, 631121, 8009, 7127, 9491, 3911, 639091, 640691, 4903, 12149, 645503, 647111, 3593, 34313, 653563, 655181, 9803, 14009, 660047, 661673, 663301, 671471, 673111, 6551, 2837, 679691, 681341, 684647, 687961, 689621, 4241, 2557, 14779, 696281, 697951, 2903, 2081, 6221, 30637, 13327, 3119, 19181, 1877, 37619, 716453, 2131, 3019, 3001, 726647, 2099, 6823, 13807, 6491, 6871, 15679, 19963, 740351, 742073, 9437, 748981, 750713, 752447, 754183, 7793, 757661, 6967, 6983, 762893, 9679, 7919, 11491, 771653, 20903, 16493, 2239, 778697, 41077, 782231, 785773, 787547, 789323, 10837, 792881, 5717, 796447, 15061, 801811, 805397, 807193, 808991, 810791, 6203, 42863, 816203, 818011, 17443, 823447, 1867, 828901, 2999, 2677, 3581, 6029, 22699, 841697, 2417, 845371, 44687, 850897, 8443, 8297, 856441, 858293, 18301, 2311, 8387, 865721, 6637, 23549, 11987, 2351, 878797, 880673, 882551, 46549, 886313, 11243, 890083, 13313, 3181, 16901, 897647, 901441, 3877, 8011, 19301, 39607, 912871, 914783, 918613, 48449, 922451, 12689, 928223, 8693, 932081, 9629, 4751, 937883, 8317, 25453, 945647, 9769, 951491, 953443, 41539, 50387, 8819, 8837, 965197, 10867, 969131, 973073, 5387, 977023, 979001, 26513, 984947, 986933, 6067, 9811, 992903, 52363, 14879,

7. Distribution of the primes

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

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)
110101001.0000001.0000001.0000000.0000000.0000000.000000
2100878160.8700000.8100000.8700008.7000008.100000inf
31.0008424863560.8420000.4860000.8420009.6781616.00000059.333332
410.0007.9733.4504.5230.7973000.3450000.7973009.4691217.09876512.705056
5100.00077.28626.83650.4500.7728600.2683600.7728609.6934657.77855111.154101
61.000.000758.916219.562539.3540.7589160.2195620.7589169.8195798.18162210.690863
710.000.0007.493.7881.858.1105.635.6780.7493790.1858110.7493799.8743318.46280310.448941
8100.000.00074.220.43916.096.93058.123.5090.7422040.1609690.7422049.9042628.66306610.313490
91.000.000.000736.606.622142.047.448594.559.1740.7366070.1420470.7366079.9245798.82450610.229238
1010.000.000.0007.321.394.0921.271.143.7656.050.250.3270.7321390.1271140.7321399.9393558.94872710.176027


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
245501.2500001.2500000.0000001.6666671.666667-nan
389901.1250001.1250000.0000001.8000001.800000-nan
416161601.0000001.0000000.0000001.7777781.777778-nan
532313100.9687500.9687500.0000001.9375001.937500-nan
664595720.9218750.8906250.0312501.9032261.838710inf
712811095150.8593750.7421880.1171881.8644071.6666677.500000
8256220165550.8593750.6445310.2148442.0000001.7368423.666667
95124362851510.8515620.5566410.2949221.9818181.7272732.745455
101.0248644953690.8437500.4833980.3603521.9816511.7368422.443709
112.0481.6868778090.8232420.4282230.3950201.9513891.7717172.192412
124.0963.3101.5891.7210.8081050.3879390.4201661.9632271.8118592.127318
138.1926.5562.8923.6640.8002930.3530270.4472661.9806651.8200132.128995
1416.38412.9445.3437.6010.7900390.3261110.4639281.9743751.8475102.074509
1532.76825.6399.88515.7540.7824400.3016660.4807741.9807631.8500842.072622
1665.53650.89918.28832.6110.7766570.2790530.4976041.9852181.8500762.070014
17131.072101.04034.31366.7270.7708740.2617870.5090871.9851081.8762582.046150
18262.144200.87664.306136.5700.7662810.2453080.5209731.9880841.8741002.046698
19524.288399.790121.102278.6880.7625390.2309840.5315551.9902331.8832152.040624
201.048.576795.633229.417566.2160.7587750.2187890.5399861.9901271.8944112.031720
212.097.1521.584.585435.0171.149.5680.7555890.2074320.5481571.9916031.8961852.030264
224.194.3043.156.946827.5172.329.4290.7526750.1972950.5553791.9922861.9022642.026352
238.388.6086.291.4431.577.3294.714.1140.7499980.1880320.5619661.9928891.9060992.023721
2416.777.21612.541.9613.013.5049.528.4570.7475590.1796190.5679401.9934951.9105112.021261
2533.554.43225.011.4765.766.94619.244.5300.7454000.1718680.5735321.9942241.9137012.019690
2667.108.86449.883.92211.058.63338.825.2890.7433280.1647860.5785421.9944411.9175892.017471
27134.217.72899.509.16221.242.31778.266.8450.7414010.1582680.5831331.9948141.9208812.015873
28268.435.456198.548.52740.869.458157.679.0690.7396510.1522510.5874001.9952791.9239642.014634
29536.870.912396.206.59778.755.204317.451.3930.7379920.1466930.5912991.9955151.9269942.013275
301.073.741.824790.760.760151.972.857638.787.9030.7364530.1415360.5949181.9958291.9296872.012239
312.147.483.6481.578.431.562293.595.3931.284.836.1690.7350140.1367160.5982981.9960921.9318932.011366
324.294.967.2963.151.060.425567.872.7102.583.187.7150.7336630.1322180.6014451.9963241.9342022.010519
338.589.934.5926.291.315.8251.099.534.5475.191.781.2780.7324060.1280030.6044031.9965711.9362342.009835
3417.179.869.18412.562.242.2922.131.209.65910.431.032.6330.7312190.1240530.6071661.9967591.9382832.009143


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
245322111
389632232
41616973544
5323113187987
66457233413161513
712895356022262324
82561655411142424239
95122859618972687372
101.024495169326126120122127
112.048877300577215214221227
124.0961.5895351.054395391396407
138.1922.8929671.925720714720738
1416.3845.3431.7713.5721.3251.3271.3511.340
1532.7689.8853.2676.6182.4802.4712.4752.459
1665.53618.2886.09512.1934.5554.5724.5644.597
17131.07234.31311.48722.8268.5808.5678.5618.605
18262.14464.30621.50742.79916.12716.00816.01016.161
19524.288121.10240.32680.77630.30030.17430.21730.411
201.048.576229.41776.518152.89957.56257.24857.28757.320
212.097.152435.017145.111289.906109.016108.766108.605108.630
224.194.304827.517276.132551.385207.082207.001206.594206.840
238.388.6081.577.329526.0891.051.240394.610394.325394.270394.124
2416.777.2163.013.5041.004.9912.008.513753.246753.812752.724753.722
2533.554.4325.766.9461.922.4923.844.4541.441.1391.441.8221.441.8611.442.124
2667.108.86411.058.6333.686.3207.372.3132.764.8092.764.8642.764.8622.764.098
27134.217.72821.242.3177.079.60214.162.7155.312.0905.308.1565.312.2365.309.835
28268.435.45640.869.45813.623.50427.245.95410.218.06410.215.02810.220.36310.216.003
29536.870.91278.755.20426.250.50952.504.69519.693.33819.684.77219.688.17219.688.922
301.073.741.824151.972.85750.660.580101.312.27738.000.04137.987.65637.991.39337.993.767
312.147.483.648293.595.39397.862.167195.733.22673.402.91573.395.48973.399.55473.397.435
324.294.967.296567.872.710189.282.232378.590.478141.965.989141.968.788141.976.536141.961.397
338.589.934.5921.099.534.547366.500.069733.034.478274.888.922274.878.100274.894.363274.873.162
3417.179.869.1842.131.209.659710.390.5761.420.819.083532.786.911532.799.009532.835.407532.788.332


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
240000000
380000000
4160000000
5320000000
6642111100
712815784452
82565527281615159
9512151737832444233
101.02436917919087919992
112.048809389420195209208197
124.0961.721848873415438436432
138.1923.6641.8241.840899916917932
1416.3847.6013.7713.8301.8771.9041.9081.912
1532.76815.7547.8737.8813.8963.9133.9753.970
1665.53632.61116.29016.3218.1578.1418.1728.141
17131.07266.72733.23333.49416.64216.67116.68416.730
18262.144136.57068.09668.47434.16534.08634.21934.100
19524.288278.688138.940139.74869.46669.63069.83269.760
201.048.576566.216282.395283.821141.105141.465141.635142.011
212.097.1521.149.568574.338575.230287.266286.934287.577287.791
224.194.3042.329.4291.163.4431.165.986581.903582.234582.920582.372
238.388.6084.714.1142.355.5012.358.6131.177.7181.179.0771.178.9571.178.362
2416.777.2169.528.4574.762.4044.766.0532.379.9072.382.7432.383.9112.381.896
2533.554.43219.244.5309.620.6369.623.8944.808.3854.813.2674.813.0404.809.838
2667.108.86438.825.28919.409.64219.415.6479.706.3239.707.7229.708.3729.702.872
27134.217.72878.266.84539.126.75039.140.09519.566.64119.571.43719.563.05619.565.711
28268.435.456157.679.06978.827.46278.851.60739.418.97739.427.90039.413.65239.418.540
29536.870.912317.451.393158.693.151158.758.24279.363.98679.374.94779.357.99479.354.466
301.073.741.824638.787.903319.329.077319.458.826159.697.210159.710.847159.692.197159.687.649
312.147.483.6481.284.836.169642.289.607642.546.562321.214.060321.221.433321.199.927321.200.749
324.294.967.2962.583.187.7151.291.341.6681.291.846.047645.791.632645.809.482645.801.528645.785.073
338.589.934.5925.191.781.2782.595.398.4012.596.382.8771.297.967.5281.297.955.9781.297.941.3831.297.916.389
3417.179.869.18410.431.032.6335.214.472.0285.216.560.6052.607.773.9152.607.779.7592.607.753.2642.607.725.695


8. Check for existing Integer Sequences by OEIS

Found in Database : 109, 107, 103, 97, 89, 79, 67, 53, 37, 19, 1, 23, 47, 73, 101, 131, 163, 197, 233, 271,
Found in Database : 109, 107, 103, 97, 89, 79, 67, 53, 37, 19, 23, 47, 73, 101, 131, 163, 197, 233, 271, 311, 353, 397, 443, 491, 541, 593, 647, 761, 821, 883, 947, 1013, 1151, 1223, 1297, 1373, 1451,
Found in Database : 19, 23, 37, 47, 53, 67, 73, 79, 89, 97, 101, 103, 107, 109, 113, 131, 139,