Inhaltsverzeichnis

Development of
Algorithmic Constructions

06:37:34
Deutsch
20.Apr 2024

Polynom = x^2+19x+3

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) = 3 = 3
f(1) = 23 = 23
f(2) = 45 = 3*3*5
f(3) = 69 = 3*23
f(4) = 95 = 5*19
f(5) = 123 = 3*41
f(6) = 153 = 3*3*17
f(7) = 185 = 5*37
f(8) = 219 = 3*73
f(9) = 255 = 3*5*17
f(10) = 293 = 293
f(11) = 333 = 3*3*37
f(12) = 375 = 3*5*5*5
f(13) = 419 = 419
f(14) = 465 = 3*5*31
f(15) = 513 = 3*3*3*19
f(16) = 563 = 563
f(17) = 615 = 3*5*41
f(18) = 669 = 3*223
f(19) = 725 = 5*5*29
f(20) = 783 = 3*3*3*29
f(21) = 843 = 3*281
f(22) = 905 = 5*181
f(23) = 969 = 3*17*19
f(24) = 1035 = 3*3*5*23
f(25) = 1103 = 1103
f(26) = 1173 = 3*17*23
f(27) = 1245 = 3*5*83
f(28) = 1319 = 1319
f(29) = 1395 = 3*3*5*31
f(30) = 1473 = 3*491
f(31) = 1553 = 1553
f(32) = 1635 = 3*5*109
f(33) = 1719 = 3*3*191
f(34) = 1805 = 5*19*19
f(35) = 1893 = 3*631
f(36) = 1983 = 3*661
f(37) = 2075 = 5*5*83
f(38) = 2169 = 3*3*241
f(39) = 2265 = 3*5*151
f(40) = 2363 = 17*139
f(41) = 2463 = 3*821
f(42) = 2565 = 3*3*3*5*19
f(43) = 2669 = 17*157
f(44) = 2775 = 3*5*5*37
f(45) = 2883 = 3*31*31
f(46) = 2993 = 41*73
f(47) = 3105 = 3*3*3*5*23
f(48) = 3219 = 3*29*37
f(49) = 3335 = 5*23*29
f(50) = 3453 = 3*1151
f(51) = 3573 = 3*3*397
f(52) = 3695 = 5*739
f(53) = 3819 = 3*19*67
f(54) = 3945 = 3*5*263
f(55) = 4073 = 4073
f(56) = 4203 = 3*3*467
f(57) = 4335 = 3*5*17*17
f(58) = 4469 = 41*109
f(59) = 4605 = 3*5*307
f(60) = 4743 = 3*3*17*31
f(61) = 4883 = 19*257
f(62) = 5025 = 3*5*5*67
f(63) = 5169 = 3*1723
f(64) = 5315 = 5*1063
f(65) = 5463 = 3*3*607
f(66) = 5613 = 3*1871
f(67) = 5765 = 5*1153
f(68) = 5919 = 3*1973
f(69) = 6075 = 3*3*3*3*3*5*5
f(70) = 6233 = 23*271
f(71) = 6393 = 3*2131
f(72) = 6555 = 3*5*19*23
f(73) = 6719 = 6719
f(74) = 6885 = 3*3*3*3*5*17
f(75) = 7053 = 3*2351
f(76) = 7223 = 31*233
f(77) = 7395 = 3*5*17*29
f(78) = 7569 = 3*3*29*29
f(79) = 7745 = 5*1549
f(80) = 7923 = 3*19*139
f(81) = 8103 = 3*37*73
f(82) = 8285 = 5*1657
f(83) = 8469 = 3*3*941
f(84) = 8655 = 3*5*577
f(85) = 8843 = 37*239
f(86) = 9033 = 3*3011
f(87) = 9225 = 3*3*5*5*41
f(88) = 9419 = 9419
f(89) = 9615 = 3*5*641
f(90) = 9813 = 3*3271
f(91) = 10013 = 17*19*31
f(92) = 10215 = 3*3*5*227
f(93) = 10419 = 3*23*151
f(94) = 10625 = 5*5*5*5*17
f(95) = 10833 = 3*23*157
f(96) = 11043 = 3*3*3*409
f(97) = 11255 = 5*2251
f(98) = 11469 = 3*3823
f(99) = 11685 = 3*5*19*41
f(100) = 11903 = 11903

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+19x+3

f(0)=3
f(1)=23
f(2)=5
f(3)=1
f(4)=19
f(5)=41
f(6)=17
f(7)=37
f(8)=73
f(9)=1
f(10)=293
f(11)=1
f(12)=1
f(13)=419
f(14)=31
f(15)=1
f(16)=563
f(17)=1
f(18)=223
f(19)=29
f(20)=1
f(21)=281
f(22)=181
f(23)=1
f(24)=1
f(25)=1103
f(26)=1
f(27)=83
f(28)=1319
f(29)=1
f(30)=491
f(31)=1553
f(32)=109
f(33)=191
f(34)=1
f(35)=631
f(36)=661
f(37)=1
f(38)=241
f(39)=151
f(40)=139
f(41)=821
f(42)=1
f(43)=157
f(44)=1
f(45)=1
f(46)=1
f(47)=1
f(48)=1
f(49)=1
f(50)=1151
f(51)=397
f(52)=739
f(53)=67
f(54)=263
f(55)=4073
f(56)=467
f(57)=1
f(58)=1
f(59)=307
f(60)=1
f(61)=257
f(62)=1
f(63)=1723
f(64)=1063
f(65)=607
f(66)=1871
f(67)=1153
f(68)=1973
f(69)=1
f(70)=271
f(71)=2131
f(72)=1
f(73)=6719
f(74)=1
f(75)=2351
f(76)=233
f(77)=1
f(78)=1
f(79)=1549
f(80)=1
f(81)=1
f(82)=1657
f(83)=941
f(84)=577
f(85)=239
f(86)=3011
f(87)=1
f(88)=9419
f(89)=641
f(90)=3271
f(91)=1
f(92)=227
f(93)=1
f(94)=1
f(95)=1
f(96)=409
f(97)=2251
f(98)=3823
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+19x+3 could be written as f(y)= y^2-87.25 with x=y-9.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+9.5
f'(x)>2x+18

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

3, 23, 5, 1, 19, 41, 17, 37, 73, 1, 293, 1, 1, 419, 31, 1, 563, 1, 223, 29, 1, 281, 181, 1, 1, 1103, 1, 83, 1319, 1, 491, 1553, 109, 191, 1, 631, 661, 1, 241, 151, 139, 821, 1, 157, 1, 1, 1, 1, 1, 1, 1151, 397, 739, 67, 263, 4073, 467, 1, 1, 307, 1, 257, 1, 1723, 1063, 607, 1871, 1153, 1973, 1, 271, 2131, 1, 6719, 1, 2351, 233, 1, 1, 1549, 1, 1, 1657, 941, 577, 239, 3011, 1, 9419, 641, 3271, 1, 227, 1, 1, 1, 409, 2251, 3823, 1, 11903, 449, 823, 12569, 853, 1447, 457, 1, 269, 2791, 1, 283, 587, 4973, 337, 15413, 1, 1061, 1, 1, 1, 16943, 1, 647, 3547, 353, 6091, 3709, 1, 1, 19373, 6551, 443, 20219, 1367, 1, 727, 1, 1, 1, 1, 1, 1, 7723, 313, 1399, 2677, 1627, 1301, 1669, 1, 25673, 1733, 1, 1, 1, 479, 5527, 9323, 1, 28643, 9661, 1, 29669, 1, 349, 30713, 1, 3491, 1, 10711, 10831, 6571, 3691, 2239, 1787, 673, 1, 35069, 1, 11941, 883, 1, 12323, 1, 547, 1, 1, 12973, 2621, 1, 4457, 1, 1, 1, 4637, 1, 2837, 14323, 8677, 1, 14741, 8929, 1, 1, 2417, 15451, 3119, 2053, 1, 1, 48533, 653, 1, 9973, 541, 16921, 10243, 5741, 1, 52583, 17681, 1, 1861, 1, 18301, 55373, 1, 18773, 1, 1123, 1, 613, 1, 3947, 59693, 743, 809, 61169, 4111, 6907, 1, 4211, 1117, 1, 7187, 701, 773, 22073, 1483, 617, 1, 1, 68819, 1, 23291, 3061, 4729, 2647, 14401, 24181, 1433, 1, 1, 1, 1031, 683, 1697, 76919, 1033, 1, 78593, 1759, 26573, 16057, 26951, 1, 1, 1619, 1, 2887, 1, 5659, 85469, 5737, 3209, 1051, 1171, 29473, 937, 3319, 30071, 1, 983, 1, 5449, 31081, 6257, 5557, 2113, 1, 96323, 1, 1, 1, 32941, 33151, 1, 1, 1, 3517, 34211, 1, 103919, 6971, 2063, 105863, 1, 1, 1, 36161, 1, 21961, 1601, 1, 4861, 12497, 1, 113819, 1, 1, 115853, 1, 953, 23581, 13177, 39761, 4799, 1, 1, 3299, 1, 8231, 1, 1, 1021, 1, 8467, 1, 1511, 43051, 43291, 26119, 14591, 8803, 4283, 44501, 1, 971, 1, 45481, 137183, 1, 2719, 27883, 2459, 1, 977, 1637, 1, 4643, 1, 9697, 2003, 1, 16417, 7817, 1, 50023, 30169, 991, 1373, 30637, 3019, 1, 1427, 1, 1, 2357, 3527, 53171, 160313, 1, 1999, 1, 1, 1889, 1, 1, 11119, 9859, 1811, 3761, 8951, 11393, 57241, 172553, 3853, 58073, 1, 58631, 1, 7103, 59473, 1, 1, 20107, 1, 4937, 2447, 6829, 185243, 1, 62323, 37567, 1, 2179, 929, 63773, 4271, 193073, 3803, 1, 10301, 1, 65831, 1, 2657, 967, 40213, 2927, 3559, 1, 22741, 2741, 206483, 947, 1543, 1, 14009, 70351, 1, 1, 1, 1481, 1, 1, 1, 72823, 14627, 11597, 1069, 2963, 1, 1, 1471, 226013, 15131, 1, 1831, 25537, 4049, 46351, 77573, 1, 234653, 78541, 15773, 1, 1, 79841, 240503, 1, 1, 1, 4793, 3557, 9857, 1, 16561, 13127, 83471, 1, 252419, 1, 84811, 255443, 1, 4517, 3041, 86501, 9649, 1, 87523, 17573, 1, 9839, 1, 267719, 1, 1, 270833, 1, 3137, 1, 30557, 5413, 2917, 92723, 1, 1163, 1, 1, 1, 6323, 1, 286673, 19183, 1, 1567, 4217, 1453, 2549, 1, 19687, 3571, 1, 1327, 7309, 20051, 100621, 1, 1, 101723, 12251, 102461, 1, 3259, 103573, 20789, 1, 34897, 21013, 1, 21163, 1, 10313, 1, 107323, 64621, 4003, 108461, 1, 1, 7307, 1823, 1, 1303, 333419, 1487, 1, 11617, 1, 37691, 3583, 1, 4967, 1, 1667, 1, 1321, 116201, 2591, 1249, 1381, 6199, 354533, 1, 118973, 1, 119771, 1, 1, 6367, 1, 365333, 1, 24517, 5507, 1, 1423, 1, 24923, 1, 1, 41947, 1, 75997, 1531, 2833, 383693, 128311, 1, 1621, 2879, 129971, 391163, 26161, 1, 15797, 3221, 7793, 3467, 2339, 1, 402503, 134591, 9001, 14011, 1, 1867, 21587, 1, 137573, 2671, 1, 1, 3343, 8219, 28031, 11399, 1741, 1489, 2819, 5693, 2069, 1597, 1, 144073, 2797, 2543, 145391, 5147, 146273, 9781, 25969, 2203, 1, 15361, 9929, 149381, 1, 6011, 16747, 90703, 1, 1, 91513, 1, 1, 20071, 1, 1, 1, 31139, 156151, 469823, 1, 157523, 94789, 1, 52967, 95617, 1, 32057, 482243, 1, 1, 25601, 1913, 18119, 1, 32801, 7151, 19793, 18379, 5351, 1, 166823, 1, 503303, 2027, 1, 1, 11311, 170141, 30109, 1801, 57191, 103231, 4663, 5581, 1, 57991, 1, 18097, 1, 1, 27851, 1, 10433, 533543, 1, 1, 1, 179801, 3163, 3499, 181273, 36353, 1, 60917, 1, 551219, 36847, 1, 555683, 1, 2551, 4871, 3671, 187721, 3643, 4603, 1, 1, 1, 1, 573719, 4261, 192251, 15629, 38653, 64591, 6857, 4751, 1, 6911, 2111, 39367, 25741, 1, 1, 596669, 2099, 199921, 601313, 13397, 201473, 24239, 1, 1, 122131, 1, 1, 1, 1, 41233, 1, 41443, 69247, 624803, 41759, 1, 1, 3049, 210911, 25373, 1, 1, 9539, 1, 42821, 643919, 1, 1979, 15823, 1, 2683, 1951, 218401, 218941, 1, 1, 1, 39019, 1, 14813, 1709, 44657, 223831, 9221, 2999, 11867, 135613, 226571, 75707, 136603, 228223, 9151, 22193, 1, 2711, 692969, 46309, 1, 697973, 46643, 1, 6113, 26099, 1, 1, 236573, 15809, 23003, 238261, 1, 718169, 1, 12659, 723263, 2843, 1, 5827, 1, 243931, 146701, 1, 1, 2521, 1, 1, 743819, 2161, 1, 44059, 1, 6779, 1, 8689, 2903, 1, 1, 1, 1, 1, 1, 769919, 10289, 4523, 775193, 51797, 15269, 1, 3779, 15373, 6833, 1, 1949, 5039, 264301, 1, 2939, 1, 266681, 801833, 2143, 89491, 1, 1, 270271, 162523, 5323, 10883, 22109, 273281, 1, 35803, 1, 11987, 828923, 18461, 1, 1, 278741, 31039, 1, 14767, 56237, 1, 31379, 11321, 27449, 1, 1, 45077, 57221, 9887, 1, 95987, 12547, 2377, 12601, 1, 1, 291691, 1, 28349, 19571, 2699, 884453, 1, 1, 178021, 15649, 8053, 35831, 33247, 59971, 10861, 17713, 20117, 907169, 1, 2011, 2089, 1, 1, 1, 3697, 102497, 184879, 308773, 3257, 930173, 103567, 1, 55057, 2017, 1, 55399, 12583, 315223, 189523, 1, 317171, 8291, 318473, 1, 959333, 320431, 64217, 1, 21493, 1, 33487, 2237, 6373, 1, 1, 327001, 196597, 109441, 3463, 6299, 330311, 1, 5209, 1, 1, 14939, 1, 334973, 40277, 1, 112327, 202591, 338323, 1,

6. Sequence of the polynom (only primes)

3, 23, 5, 19, 41, 17, 37, 73, 293, 419, 31, 563, 223, 29, 281, 181, 1103, 83, 1319, 491, 1553, 109, 191, 631, 661, 241, 151, 139, 821, 157, 1151, 397, 739, 67, 263, 4073, 467, 307, 257, 1723, 1063, 607, 1871, 1153, 1973, 271, 2131, 6719, 2351, 233, 1549, 1657, 941, 577, 239, 3011, 9419, 641, 3271, 227, 409, 2251, 3823, 11903, 449, 823, 12569, 853, 1447, 457, 269, 2791, 283, 587, 4973, 337, 15413, 1061, 16943, 647, 3547, 353, 6091, 3709, 19373, 6551, 443, 20219, 1367, 727, 7723, 313, 1399, 2677, 1627, 1301, 1669, 25673, 1733, 479, 5527, 9323, 28643, 9661, 29669, 349, 30713, 3491, 10711, 10831, 6571, 3691, 2239, 1787, 673, 35069, 11941, 883, 12323, 547, 12973, 2621, 4457, 4637, 2837, 14323, 8677, 14741, 8929, 2417, 15451, 3119, 2053, 48533, 653, 9973, 541, 16921, 10243, 5741, 52583, 17681, 1861, 18301, 55373, 18773, 1123, 613, 3947, 59693, 743, 809, 61169, 4111, 6907, 4211, 1117, 7187, 701, 773, 22073, 1483, 617, 68819, 23291, 3061, 4729, 2647, 14401, 24181, 1433, 1031, 683, 1697, 76919, 1033, 78593, 1759, 26573, 16057, 26951, 1619, 2887, 5659, 85469, 5737, 3209, 1051, 1171, 29473, 937, 3319, 30071, 983, 5449, 31081, 6257, 5557, 2113, 96323, 32941, 33151, 3517, 34211, 103919, 6971, 2063, 105863, 36161, 21961, 1601, 4861, 12497, 113819, 115853, 953, 23581, 13177, 39761, 4799, 3299, 8231, 1021, 8467, 1511, 43051, 43291, 26119, 14591, 8803, 4283, 44501, 971, 45481, 137183, 2719, 27883, 2459, 977, 1637, 4643, 9697, 2003, 16417, 7817, 50023, 30169, 991, 1373, 30637, 3019, 1427, 2357, 3527, 53171, 160313, 1999, 1889, 11119, 9859, 1811, 3761, 8951, 11393, 57241, 172553, 3853, 58073, 58631, 7103, 59473, 20107, 4937, 2447, 6829, 185243, 62323, 37567, 2179, 929, 63773, 4271, 193073, 3803, 10301, 65831, 2657, 967, 40213, 2927, 3559, 22741, 2741, 206483, 947, 1543, 14009, 70351, 1481, 72823, 14627, 11597, 1069, 2963, 1471, 226013, 15131, 1831, 25537, 4049, 46351, 77573, 234653, 78541, 15773, 79841, 240503, 4793, 3557, 9857, 16561, 13127, 83471, 252419, 84811, 255443, 4517, 3041, 86501, 9649, 87523, 17573, 9839, 267719, 270833, 3137, 30557, 5413, 2917, 92723, 1163, 6323, 286673, 19183, 1567, 4217, 1453, 2549, 19687, 3571, 1327, 7309, 20051, 100621, 101723, 12251, 102461, 3259, 103573, 20789, 34897, 21013, 21163, 10313, 107323, 64621, 4003, 108461, 7307, 1823, 1303, 333419, 1487, 11617, 37691, 3583, 4967, 1667, 1321, 116201, 2591, 1249, 1381, 6199, 354533, 118973, 119771, 6367, 365333, 24517, 5507, 1423, 24923, 41947, 75997, 1531, 2833, 383693, 128311, 1621, 2879, 129971, 391163, 26161, 15797, 3221, 7793, 3467, 2339, 402503, 134591, 9001, 14011, 1867, 21587, 137573, 2671, 3343, 8219, 28031, 11399, 1741, 1489, 2819, 5693, 2069, 1597, 144073, 2797, 2543, 145391, 5147, 146273, 9781, 25969, 2203, 15361, 9929, 149381, 6011, 16747, 90703, 91513, 20071, 31139, 156151, 469823, 157523, 94789, 52967, 95617, 32057, 482243, 25601, 1913, 18119, 32801, 7151, 19793, 18379, 5351, 166823, 503303, 2027, 11311, 170141, 30109, 1801, 57191, 103231, 4663, 5581, 57991, 18097, 27851, 10433, 533543, 179801, 3163, 3499, 181273, 36353, 60917, 551219, 36847, 555683, 2551, 4871, 3671, 187721, 3643, 4603, 573719, 4261, 192251, 15629, 38653, 64591, 6857, 4751, 6911, 2111, 39367, 25741, 596669, 2099, 199921, 601313, 13397, 201473, 24239, 122131, 41233, 41443, 69247, 624803, 41759, 3049, 210911, 25373, 9539, 42821, 643919, 1979, 15823, 2683, 1951, 218401, 218941, 39019, 14813, 1709, 44657, 223831, 9221, 2999, 11867, 135613, 226571, 75707, 136603, 228223, 9151, 22193, 2711, 692969, 46309, 697973, 46643, 6113, 26099, 236573, 15809, 23003, 238261, 718169, 12659, 723263, 2843, 5827, 243931, 146701, 2521, 743819, 2161, 44059, 6779, 8689, 2903, 769919, 10289, 4523, 775193, 51797, 15269, 3779, 15373, 6833, 1949, 5039, 264301, 2939, 266681, 801833, 2143, 89491, 270271, 162523, 5323, 10883, 22109, 273281, 35803, 11987, 828923, 18461, 278741, 31039, 14767, 56237, 31379, 11321, 27449, 45077, 57221, 9887, 95987, 12547, 2377, 12601, 291691, 28349, 19571, 2699, 884453, 178021, 15649, 8053, 35831, 33247, 59971, 10861, 17713, 20117, 907169, 2011, 2089, 3697, 102497, 184879, 308773, 3257, 930173, 103567, 55057, 2017, 55399, 12583, 315223, 189523, 317171, 8291, 318473, 959333, 320431, 64217, 21493, 33487, 2237, 6373, 327001, 196597, 109441, 3463, 6299, 330311, 5209, 14939, 334973, 40277, 112327, 202591, 338323,

7. Distribution of the primes

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

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)
1109360.9000000.3000000.6000000.0000000.0000000.000000
21006212500.6200000.1200000.5000006.8888894.0000008.333333
31.000661815800.6610000.0810000.58000010.6612906.75000011.600000
410.0006.6595916.0680.6659000.0591000.60680010.0741307.29629610.462069
5100.00067.3614.43562.9260.6736100.0443500.62926010.1157837.50423010.370138
61.000.000676.68835.948640.7400.6766880.0359480.64074010.0456948.10552410.182437
710.000.0006.788.362303.6706.484.6920.6788360.0303670.64846910.0317468.44747910.120629
8100.000.00068.048.8062.633.03265.415.7740.6804880.0263300.65415810.0243348.67070210.087723
91.000.000.000681.812.16823.226.947658.585.2210.6818120.0232270.65858510.0194588.82136910.067681
1010.000.000.0006.828.786.929207.875.2766.620.911.6530.6828790.0207880.66209110.0156428.94974610.053234


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
244221.0000000.5000000.5000001.3333331.0000002.000000
388261.0000000.2500000.7500002.0000001.0000003.000000
41612570.7500000.3125000.4375001.5000002.5000001.166667
532218130.6562500.2500000.4062501.7500001.6000001.857143
664399300.6093750.1406250.4687501.8571431.1250002.307692
71288215670.6406250.1171880.5234382.1025641.6666672.233333
8256164291350.6406250.1132810.5273442.0000001.9333332.014925
9512333502830.6503910.0976560.5527342.0304881.7241382.096296
101.024676815950.6601560.0791020.5810552.0300301.6200002.102473
112.0481.3541501.2040.6611330.0732420.5878912.0029591.8518522.023530
124.0962.7212742.4470.6643070.0668950.5974122.0096011.8266672.032392
138.1925.4544974.9570.6657710.0606690.6051032.0044101.8138692.025746
1416.38410.94991310.0360.6682740.0557250.6125492.0075171.8370222.024612
1532.76821.9851.61820.3670.6709290.0493770.6215522.0079461.7721802.029394
1665.53644.0653.03941.0260.6723790.0463710.6260072.0043211.8782452.014337
17131.07288.3305.62382.7070.6739040.0429000.6310042.0045391.8502802.015965
18262.144176.87310.566166.3070.6747170.0403060.6344112.0024111.8790682.010797
19524.288354.37019.862334.5080.6759070.0378840.6380232.0035281.8798032.011389
201.048.576709.59037.532672.0580.6767180.0357930.6409242.0023991.8896392.009094
212.097.1521.420.57471.1541.349.4200.6773820.0339290.6434542.0019651.8958222.007892
224.194.3042.843.915135.1632.708.7520.6780420.0322250.6458172.0019481.8995842.007345
238.388.6085.693.417257.6225.435.7950.6787080.0307110.6479972.0019651.9060102.006752
2416.777.21611.395.857492.11510.903.7420.6792460.0293320.6499142.0015851.9102212.005915
2533.554.43222.810.056942.43921.867.6170.6797930.0280870.6517062.0016101.9150792.005515
2667.108.86445.649.2591.809.23443.840.0250.6802270.0269600.6532672.0012781.9197362.004792
27134.217.72891.358.8113.474.78787.884.0240.6806760.0258890.6547872.0013211.9205852.004653
28268.435.456182.828.7396.685.902176.142.8370.6810900.0249070.6561832.0012161.9241192.004265
29536.870.912365.864.75112.878.348352.986.4030.6814760.0239880.6574882.0011341.9261952.003978
301.073.741.824732.128.04724.850.719707.277.3280.6818470.0231440.6587032.0010891.9296512.003696
312.147.483.6481.464.992.29448.007.9071.416.984.3870.6821900.0223550.6598352.0010051.9318522.003435
324.294.967.2962.931.360.97392.863.8092.838.497.1640.6825110.0216220.6608892.0009401.9343442.003196
338.589.934.5925.865.333.813179.803.7445.685.530.0690.6828150.0209320.6618832.0008911.9362092.003007
3417.179.869.18411.735.560.069348.534.69911.387.025.3700.6831000.0202870.6628122.0008341.9384172.002808
3534.359.738.36823.480.407.489676.216.48222.804.191.0070.6833700.0196800.6636892.0007911.9401702.002647
3668.719.476.73646.978.510.6191.313.136.44745.665.374.1720.6836270.0191090.6645192.0007541.9418872.002499


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
122010101
242010101
382010101
4165040311
5328071313
6649082313
7128150143426
8256290276887
95125004811141213
101.0248107918222021
112.048150014837393836
124.096274027269657466
138.1924970495130113123131
1416.3849130911232216232233
1532.7681.61801.616406395409408
1665.5363.03903.037756758751774
17131.0725.62305.6211.3961.4421.3641.421
18262.14410.566010.5642.6182.6892.5982.661
19524.28819.862019.8604.9744.9844.8855.019
201.048.57637.532037.5309.4349.3049.3119.483
212.097.15271.154071.15217.80717.73517.75717.855
224.194.304135.1630135.16133.78333.59333.80833.979
238.388.608257.6220257.62064.26564.37364.37964.605
2416.777.216492.1150492.113122.859122.840122.887123.529
2533.554.432942.4390942.437235.171235.773235.335236.160
2667.108.8641.809.23401.809.232451.750452.193452.051453.240
27134.217.7283.474.78703.474.785867.615869.201869.233868.738
28268.435.4566.685.90206.685.9001.670.5491.672.6761.671.4961.671.181
29536.870.91212.878.348012.878.3463.218.9423.221.6513.219.2963.218.459
301.073.741.82424.850.719024.850.7176.210.2206.214.3386.214.0156.212.146
312.147.483.64848.007.907048.007.90511.999.55212.002.83912.004.63812.000.878
324.294.967.29692.863.809092.863.80723.213.57623.218.58523.217.67723.213.971
338.589.934.592179.803.7440179.803.74244.950.91344.952.98044.951.87844.947.973
3417.179.869.184348.534.6990348.534.69787.132.98787.136.04287.138.31887.127.352
3534.359.738.368676.216.4820676.216.480169.054.924169.049.739169.062.255169.049.564
3668.719.476.7361.313.136.44701.313.136.445328.276.537328.286.433328.287.114328.286.363


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
242110110
386333120
4167433121
53213764342
6643018126888
712867392816161619
8256135765926374131
951228314613772707071
101.024595303292142155145153
112.0481.204610594284301318301
124.0962.4471.2821.165591611630615
138.1924.9572.5692.3881.2151.2411.2441.257
1416.38410.0365.1654.8712.4772.4942.5062.559
1532.76820.36710.4819.8865.0595.0425.0745.192
1665.53641.02621.12819.89810.22110.28010.16810.357
17131.07282.70742.69540.01220.62020.68220.62120.784
18262.144166.30785.54980.75841.51641.57241.68441.535
19524.288334.508171.928162.58083.70383.49483.64983.662
201.048.576672.058344.600327.458168.172167.875167.711168.300
212.097.1521.349.420691.795657.625337.704337.473336.797337.446
224.194.3042.708.7521.387.6001.321.152677.156677.490676.328677.778
238.388.6085.435.7952.781.1962.654.5991.358.8641.358.9021.357.6601.360.369
2416.777.21610.903.7425.573.0755.330.6672.725.6862.726.0312.723.9652.728.060
2533.554.43221.867.61711.162.62710.704.9905.467.1725.468.7475.464.1445.467.554
2667.108.86443.840.02522.359.40121.480.62410.959.65710.961.11510.958.71210.960.541
27134.217.72887.884.02444.785.36243.098.66221.972.09021.975.61521.966.83421.969.485
28268.435.456176.142.83789.692.43686.450.40144.034.29744.042.29144.038.09644.028.153
29536.870.912352.986.403179.608.853173.377.55088.238.99188.259.46288.248.78988.239.161
301.073.741.824707.277.328359.654.010347.623.318176.803.971176.837.025176.814.757176.821.575
312.147.483.6481.416.984.387720.093.710696.890.677354.237.971354.262.604354.231.249354.252.563
324.294.967.2962.838.497.1641.441.666.6521.396.830.512709.618.553709.648.503709.606.317709.623.791
338.589.934.5925.685.530.0692.886.128.3492.799.401.7201.421.382.1581.421.376.6741.421.363.6091.421.407.628
3417.179.869.18411.387.025.3705.777.567.2555.609.458.1152.846.784.3762.846.723.4752.846.725.5462.846.791.973
3534.359.738.36822.804.191.00711.565.042.21211.239.148.7955.700.999.3705.701.073.6645.701.067.0555.701.050.918
3668.719.476.73645.665.374.17223.148.846.02922.516.528.14311.416.336.61311.416.361.84011.416.339.13611.416.336.583


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 23, 5, 1, 19, 41, 17, 37, 73, 1, 293, 1, 1, 419, 31, 1, 563, 1, 223, 29,
Found in Database : 3, 23, 5, 19, 41, 17, 37, 73, 293, 419, 31, 563, 223, 29, 281, 181, 1103, 83, 1319, 491, 1553, 109, 191, 631, 661, 241, 151,
Found in Database : 3, 5, 17, 19, 23, 29, 31, 37, 41, 67, 73, 83, 109, 139,