Inhaltsverzeichnis

Development of
Algorithmic Constructions

13:43:36
Deutsch
19.Apr 2024

Polynom = x^2-66x+5

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) = 5 = 5
f(1) = 15 = 3*5
f(2) = 123 = 3*41
f(3) = 23 = 23
f(4) = 243 = 3*3*3*3*3
f(5) = 75 = 3*5*5
f(6) = 355 = 5*71
f(7) = 51 = 3*17
f(8) = 459 = 3*3*3*17
f(9) = 127 = 127
f(10) = 555 = 3*5*37
f(11) = 75 = 3*5*5
f(12) = 643 = 643
f(13) = 171 = 3*3*19
f(14) = 723 = 3*241
f(15) = 95 = 5*19
f(16) = 795 = 3*5*53
f(17) = 207 = 3*3*23
f(18) = 859 = 859
f(19) = 111 = 3*37
f(20) = 915 = 3*5*61
f(21) = 235 = 5*47
f(22) = 963 = 3*3*107
f(23) = 123 = 3*41
f(24) = 1003 = 17*59
f(25) = 255 = 3*5*17
f(26) = 1035 = 3*3*5*23
f(27) = 131 = 131
f(28) = 1059 = 3*353
f(29) = 267 = 3*89
f(30) = 1075 = 5*5*43
f(31) = 135 = 3*3*3*5
f(32) = 1083 = 3*19*19
f(33) = 271 = 271
f(34) = 1083 = 3*19*19
f(35) = 135 = 3*3*3*5
f(36) = 1075 = 5*5*43
f(37) = 267 = 3*89
f(38) = 1059 = 3*353
f(39) = 131 = 131
f(40) = 1035 = 3*3*5*23
f(41) = 255 = 3*5*17
f(42) = 1003 = 17*59
f(43) = 123 = 3*41
f(44) = 963 = 3*3*107
f(45) = 235 = 5*47
f(46) = 915 = 3*5*61
f(47) = 111 = 3*37
f(48) = 859 = 859
f(49) = 207 = 3*3*23
f(50) = 795 = 3*5*53
f(51) = 95 = 5*19
f(52) = 723 = 3*241
f(53) = 171 = 3*3*19
f(54) = 643 = 643
f(55) = 75 = 3*5*5
f(56) = 555 = 3*5*37
f(57) = 127 = 127
f(58) = 459 = 3*3*3*17
f(59) = 51 = 3*17
f(60) = 355 = 5*71
f(61) = 75 = 3*5*5
f(62) = 243 = 3*3*3*3*3
f(63) = 23 = 23
f(64) = 123 = 3*41
f(65) = 15 = 3*5
f(66) = 5 = 5
f(67) = 9 = 3*3
f(68) = 141 = 3*47
f(69) = 53 = 53
f(70) = 285 = 3*5*19
f(71) = 45 = 3*3*5
f(72) = 437 = 19*23
f(73) = 129 = 3*43
f(74) = 597 = 3*199
f(75) = 85 = 5*17
f(76) = 765 = 3*3*5*17
f(77) = 213 = 3*71
f(78) = 941 = 941
f(79) = 129 = 3*43
f(80) = 1125 = 3*3*5*5*5
f(81) = 305 = 5*61
f(82) = 1317 = 3*439
f(83) = 177 = 3*59
f(84) = 1517 = 37*41
f(85) = 405 = 3*3*3*3*5
f(86) = 1725 = 3*5*5*23
f(87) = 229 = 229
f(88) = 1941 = 3*647
f(89) = 513 = 3*3*3*19
f(90) = 2165 = 5*433
f(91) = 285 = 3*5*19
f(92) = 2397 = 3*17*47
f(93) = 629 = 17*37
f(94) = 2637 = 3*3*293
f(95) = 345 = 3*5*23
f(96) = 2885 = 5*577
f(97) = 753 = 3*251
f(98) = 3141 = 3*3*349
f(99) = 409 = 409
f(100) = 3405 = 3*5*227

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-66x+5

f(0)=5
f(1)=3
f(2)=41
f(3)=23
f(4)=1
f(5)=1
f(6)=71
f(7)=17
f(8)=1
f(9)=127
f(10)=37
f(11)=1
f(12)=643
f(13)=19
f(14)=241
f(15)=1
f(16)=53
f(17)=1
f(18)=859
f(19)=1
f(20)=61
f(21)=47
f(22)=107
f(23)=1
f(24)=59
f(25)=1
f(26)=1
f(27)=131
f(28)=353
f(29)=89
f(30)=43
f(31)=1
f(32)=1
f(33)=271
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)=1
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
f(69)=1
f(70)=1
f(71)=1
f(72)=1
f(73)=1
f(74)=199
f(75)=1
f(76)=1
f(77)=1
f(78)=941
f(79)=1
f(80)=1
f(81)=1
f(82)=439
f(83)=1
f(84)=1
f(85)=1
f(86)=1
f(87)=229
f(88)=647
f(89)=1
f(90)=433
f(91)=1
f(92)=1
f(93)=1
f(94)=293
f(95)=1
f(96)=577
f(97)=251
f(98)=349
f(99)=409

b) Substitution of the polynom
The polynom f(x)=x^2-66x+5 could be written as f(y)= y^2-1084 with x=y+33

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-33
f'(x)>2x-67 with x > 33

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

5, 3, 41, 23, 1, 1, 71, 17, 1, 127, 37, 1, 643, 19, 241, 1, 53, 1, 859, 1, 61, 47, 107, 1, 59, 1, 1, 131, 353, 89, 43, 1, 1, 271, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 199, 1, 1, 1, 941, 1, 1, 1, 439, 1, 1, 1, 1, 229, 647, 1, 433, 1, 1, 1, 293, 1, 577, 251, 349, 409, 227, 1, 3677, 1, 1319, 1, 283, 1, 239, 1, 1, 1, 191, 443, 5477, 1, 1, 1493, 1, 263, 1297, 1, 1, 877, 2399, 1, 1, 1, 2647, 1, 1, 1, 379, 743, 1013, 233, 1, 811, 9941, 1, 691, 1, 1, 1, 661, 1, 1, 1489, 1, 1031, 2521, 1, 1453, 3329, 4519, 1, 1, 397, 1, 1, 1, 1, 331, 659, 1, 1, 1, 1, 281, 1451, 1, 449, 6079, 1543, 18797, 1, 1291, 1, 1, 1, 821, 347, 7039, 2677, 1, 367, 1, 1, 2549, 5813, 1571, 1, 24197, 1, 487, 1, 1699, 1, 26141, 1103, 1787, 1, 1, 1, 761, 1, 641, 1, 1, 1, 1, 1, 607, 7829, 10559, 1, 6481, 2731, 11047, 1, 1, 571, 1823, 1459, 1, 1789, 2411, 1523, 1, 1, 503, 953, 1, 1, 39317, 1, 1, 10133, 4549, 1723, 8353, 1, 4733, 1, 14479, 1, 521, 1, 1, 11393, 3067, 1, 46877, 3943, 15919, 1, 1, 4091, 463, 2083, 1, 509, 1, 1, 857, 1, 3547, 6709, 18047, 1, 479, 1, 18679, 1, 2111, 1, 11593, 4871, 1, 1, 1, 1, 60917, 853, 20639, 3121, 839, 881, 1487, 1, 1, 1637, 7333, 1, 1559, 563, 1, 1009, 1213, 2903, 739, 1, 1033, 1, 1, 1, 1, 3083, 24847, 18773, 1, 1, 76757, 1, 1, 1, 1, 1, 80141, 1, 5419, 4093, 27479, 1153, 83597, 1, 5651, 1, 1061, 7211, 1, 1, 3271, 22229, 1, 751, 1, 1, 1613, 1, 6211, 1, 94397, 1, 1, 4813, 2153, 1, 1, 8231, 1, 1, 907, 8443, 101957, 1, 6883, 1367, 34847, 1, 21169, 1, 1553, 13477, 709, 1, 21961, 4603, 1, 27953, 7499, 1, 113837, 3181, 1, 2897, 1, 3257, 1999, 4943, 1, 1, 1, 5059, 122117, 1, 1, 1, 41647, 1, 1, 1, 1039, 1, 1873, 1, 1, 1, 2591, 977, 2969, 2239, 135077, 5659, 15173, 1373, 9203, 5783, 6067, 1, 9403, 1, 1, 1327, 7583, 1, 1, 1, 16349, 6163, 1, 1, 16693, 1, 50599, 2543, 829, 2141, 51647, 38933, 2087, 1, 1, 1, 53239, 4013, 1, 1, 1283, 6823, 1, 8269, 55399, 6959, 3571, 937, 11299, 1, 57047, 1, 1, 1447, 3061, 1069, 1, 1, 35569, 14891, 19949, 22549, 1, 1, 182957, 1, 61559, 9277, 1, 1, 4003, 1, 12659, 1, 1, 1, 1, 1619, 4337, 2131, 65647, 8243, 7949, 1109, 1, 1481, 3967, 1129, 1, 8543, 3613, 51713, 1, 1, 209597, 1, 1, 5309, 1, 17851, 215141, 3001, 1, 1, 72959, 1, 220757, 1, 14843, 1471, 1, 1, 45289, 1, 25373, 57329, 1301, 1, 46441, 1, 4591, 29389, 15739, 1, 238037, 1, 79999, 12049, 1, 1, 1, 20411, 1093, 6173, 3593, 20743, 1, 1, 3359, 1709, 1801, 3541, 51193, 4283, 85999, 32377, 9631, 1, 1, 1, 1087, 66293, 17747, 1, 1, 7481, 1, 1, 1, 1, 1, 11483, 18443, 2777, 1, 1, 14783, 1, 1, 35509, 5591, 1, 57457, 1, 96479, 1231, 1, 1, 1433, 24571, 4289, 1, 1, 4987, 300317, 1, 33613, 1, 1, 12743, 306941, 1, 20611, 7757, 4513, 8681, 313637, 1, 21059, 1933, 11783, 1, 64081, 1, 1, 2381, 5701, 1, 65449, 4561, 109847, 1759, 22123, 1, 334157, 27943, 1901, 1, 7529, 1, 341141, 1, 1, 1, 115279, 1, 15139, 1, 23371, 43969, 1657, 1, 1, 2971, 1, 1693, 40013, 3011, 1, 1783, 1, 1237, 1289, 6143, 19463, 5153, 1, 1, 24979, 1, 10193, 31531, 25307, 9521, 1, 1879, 22621, 1, 1, 97073, 3167, 1, 1, 1, 131519, 49477, 1, 2213, 1, 16703, 134047, 100853, 1, 1, 1439, 1, 45533, 1, 1, 34471, 21839, 1, 1, 1, 1, 1951, 18379, 1, 1, 3137, 2797, 35771, 86113, 1, 1, 4723, 1, 3643, 87697, 1, 147047, 1, 29587, 2473, 446477, 1, 8807, 1, 3347, 1, 454541, 37991, 1, 2293, 153319, 1, 462677, 1, 1, 1913, 1, 6521, 2297, 1, 1, 59377, 1, 7963, 2039, 20023, 53549, 120833, 1, 4051, 8263, 1, 1, 1, 1, 1, 29173, 1, 1, 1, 55733, 20959, 1429, 8431, 11273, 63589, 170047, 1, 1, 1, 2819, 5623, 1, 1, 1, 43591, 3299, 1777, 3907, 1, 23059, 22159, 19751, 26737, 35747, 1, 539141, 15017, 1, 1, 10687, 1, 2393, 1, 1597, 138113, 1, 23143, 22277, 1, 62213, 70177, 187639, 1, 22637, 1, 1, 8389, 2243, 1, 1, 1, 10141, 14489, 1, 1, 584141, 1, 13049, 29437, 4799, 24659, 13799, 1, 2339, 4397, 8689, 1, 2803, 1, 201919, 1, 7517, 5087, 122401, 51131, 22783, 1, 1, 10331, 1, 1, 1, 1, 41851, 8741, 630941, 52711, 1, 1, 3727, 1, 2749, 5351, 2861, 161333, 2423, 1, 7649, 1, 1, 1997, 4657, 1, 1, 1, 221047, 8747, 1, 1, 669677, 1, 3251, 3373, 45083, 3323, 1, 9461, 45523, 1, 1, 1, 13009, 11519, 46187, 1847, 1, 58151, 1, 5843, 8677, 176129, 1, 1, 1, 1, 2221, 89329, 9551, 3989, 719717, 30059, 5879, 36241, 3229, 1, 729941, 3209, 1, 1, 14447, 61543, 740237, 1, 1, 1, 1, 3467, 1, 12539, 251359, 94477, 2053, 2531, 8011, 1, 1, 1, 51203, 1, 10867, 21481, 1, 19421, 51907, 1, 782141, 1, 52379, 39373, 29231, 1, 792797, 1, 1, 1, 266647, 1, 32141, 2237, 269039, 4703, 270239, 1, 32573, 2957, 5801, 2383, 18257, 13723, 48541, 2027, 1, 1, 1, 34763, 1, 7759, 55987, 1, 281159, 2609, 847157, 1, 1, 213173, 94949, 2099, 1, 1, 95773, 5683, 288559, 1, 4241, 12101, 4933, 9511, 1, 2441, 23801, 1, 294799, 22157, 1, 4363, 3701, 37243, 1, 1, 1, 1, 47543, 1, 1, 1, 303647, 25357, 182953, 7639, 13313, 13537, 6029, 7703, 3037, 77351, 103349, 1,

6. Sequence of the polynom (only primes)

5, 3, 41, 23, 71, 17, 127, 37, 643, 19, 241, 53, 859, 61, 47, 107, 59, 131, 353, 89, 43, 271, 199, 941, 439, 229, 647, 433, 293, 577, 251, 349, 409, 227, 3677, 1319, 283, 239, 191, 443, 5477, 1493, 263, 1297, 877, 2399, 2647, 379, 743, 1013, 233, 811, 9941, 691, 661, 1489, 1031, 2521, 1453, 3329, 4519, 397, 331, 659, 281, 1451, 449, 6079, 1543, 18797, 1291, 821, 347, 7039, 2677, 367, 2549, 5813, 1571, 24197, 487, 1699, 26141, 1103, 1787, 761, 641, 607, 7829, 10559, 6481, 2731, 11047, 571, 1823, 1459, 1789, 2411, 1523, 503, 953, 39317, 10133, 4549, 1723, 8353, 4733, 14479, 521, 11393, 3067, 46877, 3943, 15919, 4091, 463, 2083, 509, 857, 3547, 6709, 18047, 479, 18679, 2111, 11593, 4871, 60917, 853, 20639, 3121, 839, 881, 1487, 1637, 7333, 1559, 563, 1009, 1213, 2903, 739, 1033, 3083, 24847, 18773, 76757, 80141, 5419, 4093, 27479, 1153, 83597, 5651, 1061, 7211, 3271, 22229, 751, 1613, 6211, 94397, 4813, 2153, 8231, 907, 8443, 101957, 6883, 1367, 34847, 21169, 1553, 13477, 709, 21961, 4603, 27953, 7499, 113837, 3181, 2897, 3257, 1999, 4943, 5059, 122117, 41647, 1039, 1873, 2591, 977, 2969, 2239, 135077, 5659, 15173, 1373, 9203, 5783, 6067, 9403, 1327, 7583, 16349, 6163, 16693, 50599, 2543, 829, 2141, 51647, 38933, 2087, 53239, 4013, 1283, 6823, 8269, 55399, 6959, 3571, 937, 11299, 57047, 1447, 3061, 1069, 35569, 14891, 19949, 22549, 182957, 61559, 9277, 4003, 12659, 1619, 4337, 2131, 65647, 8243, 7949, 1109, 1481, 3967, 1129, 8543, 3613, 51713, 209597, 5309, 17851, 215141, 3001, 72959, 220757, 14843, 1471, 45289, 25373, 57329, 1301, 46441, 4591, 29389, 15739, 238037, 79999, 12049, 20411, 1093, 6173, 3593, 20743, 3359, 1709, 1801, 3541, 51193, 4283, 85999, 32377, 9631, 1087, 66293, 17747, 7481, 11483, 18443, 2777, 14783, 35509, 5591, 57457, 96479, 1231, 1433, 24571, 4289, 4987, 300317, 33613, 12743, 306941, 20611, 7757, 4513, 8681, 313637, 21059, 1933, 11783, 64081, 2381, 5701, 65449, 4561, 109847, 1759, 22123, 334157, 27943, 1901, 7529, 341141, 115279, 15139, 23371, 43969, 1657, 2971, 1693, 40013, 3011, 1783, 1237, 1289, 6143, 19463, 5153, 24979, 10193, 31531, 25307, 9521, 1879, 22621, 97073, 3167, 131519, 49477, 2213, 16703, 134047, 100853, 1439, 45533, 34471, 21839, 1951, 18379, 3137, 2797, 35771, 86113, 4723, 3643, 87697, 147047, 29587, 2473, 446477, 8807, 3347, 454541, 37991, 2293, 153319, 462677, 1913, 6521, 2297, 59377, 7963, 2039, 20023, 53549, 120833, 4051, 8263, 29173, 55733, 20959, 1429, 8431, 11273, 63589, 170047, 2819, 5623, 43591, 3299, 1777, 3907, 23059, 22159, 19751, 26737, 35747, 539141, 15017, 10687, 2393, 1597, 138113, 23143, 22277, 62213, 70177, 187639, 22637, 8389, 2243, 10141, 14489, 584141, 13049, 29437, 4799, 24659, 13799, 2339, 4397, 8689, 2803, 201919, 7517, 5087, 122401, 51131, 22783, 10331, 41851, 8741, 630941, 52711, 3727, 2749, 5351, 2861, 161333, 2423, 7649, 1997, 4657, 221047, 8747, 669677, 3251, 3373, 45083, 3323, 9461, 45523, 13009, 11519, 46187, 1847, 58151, 5843, 8677, 176129, 2221, 89329, 9551, 3989, 719717, 30059, 5879, 36241, 3229, 729941, 3209, 14447, 61543, 740237, 3467, 12539, 251359, 94477, 2053, 2531, 8011, 51203, 10867, 21481, 19421, 51907, 782141, 52379, 39373, 29231, 792797, 266647, 32141, 2237, 269039, 4703, 270239, 32573, 2957, 5801, 2383, 18257, 13723, 48541, 2027, 34763, 7759, 55987, 281159, 2609, 847157, 213173, 94949, 2099, 95773, 5683, 288559, 4241, 12101, 4933, 9511, 2441, 23801, 294799, 22157, 4363, 3701, 37243, 47543, 303647, 25357, 182953, 7639, 13313, 13537, 6029, 7703, 3037, 77351, 103349,

7. Distribution of the primes

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

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)
1108350.8000000.3000000.5000000.0000000.0000000.000000
21003210220.3200000.1000000.2200004.0000003.3333334.400000
31.000537864510.5370000.0860000.45100016.7812508.60000020.500000
410.0006.0636045.4590.6063000.0604000.54590011.2905037.02325612.104213
5100.00062.8404.58958.2510.6284000.0458900.58251010.3645067.59768210.670635
61.000.000640.42336.803603.6200.6404230.0368030.60362010.1913278.01983010.362397
710.000.0006.481.212311.1636.170.0490.6481210.0311160.61700510.1202058.45482710.221744
8100.000.00065.384.0562.683.49862.700.5580.6538410.0268350.62700610.0882458.62409110.162085
91.000.000.000658.285.07823.608.183634.676.8950.6582850.0236080.63467710.0679758.79754110.122348
1010.000.000.0006.618.255.483210.761.8316.407.493.6520.6618260.0210760.64074910.0537838.92749010.095678


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)
123121.5000000.5000001.0000000.0000000.0000000.000000
244221.0000000.5000000.5000001.3333332.0000001.000000
386240.7500000.2500000.5000001.5000001.0000002.000000
41611470.6875000.2500000.4375001.8333332.0000001.750000
532196130.5937500.1875000.4062501.7272731.5000001.857143
664207130.3125000.1093750.2031251.0526321.1666671.000000
71284414300.3437500.1093750.2343752.2000002.0000002.307692
825610727800.4179690.1054690.3125002.4318181.9285712.666667
9512248482000.4843750.0937500.3906252.3177571.7777782.500000
101.024552894630.5390620.0869140.4521482.2258061.8541672.315000
112.0481.1621571.0050.5673830.0766600.4907232.1050721.7640452.170626
124.0962.4242872.1370.5917970.0700680.5217292.0860591.8280252.126368
138.1924.9305164.4140.6018070.0629880.5388182.0338281.7979092.065512
1416.38410.0459249.1210.6130980.0563960.5567022.0375251.7906982.066380
1532.76820.3131.67918.6340.6199040.0512390.5686652.0222001.8171002.042978
1665.53640.9863.15637.8300.6253970.0481570.5772402.0177231.8796902.030160
17131.07282.5815.84976.7320.6300430.0446240.5854192.0148591.8532952.028337
18262.144166.09011.007155.0830.6335830.0419880.5915952.0112371.8818602.021099
19524.288334.16320.515313.6480.6373650.0391290.5982362.0119391.8638142.022453
201.048.576671.56838.518633.0500.6404570.0367340.6037242.0097021.8775532.018345
212.097.1521.348.74572.9361.275.8090.6431320.0347790.6083532.0083521.8935562.015337
224.194.3042.707.140138.8372.568.3030.6454320.0331010.6123312.0071551.9035462.013078
238.388.6085.431.953264.0675.167.8860.6475390.0314790.6160602.0065281.9019932.012179
2416.777.21610.896.884503.68910.393.1950.6495050.0300220.6194832.0060711.9074292.011111
2533.554.43221.854.568962.51020.892.0580.6513170.0286850.6226322.0055791.9109212.010167
2667.108.86443.819.4611.844.45441.975.0070.6529610.0274850.6254762.0050481.9162962.009137
27134.217.72887.842.6803.540.79384.301.8870.6544790.0263810.6280982.0046501.9196972.008383
28268.435.456176.063.0926.805.913169.257.1790.6558860.0253540.6305322.0043001.9221442.007751
29536.870.912352.828.08313.099.567339.728.5160.6571940.0244000.6327942.0039871.9247332.007173
301.073.741.824706.959.49925.254.900681.704.5990.6584070.0235200.6348872.0036941.9279192.006616
312.147.483.6481.416.363.33048.750.7271.367.612.6030.6595460.0227010.6368442.0034581.9303472.006166
324.294.967.2962.837.305.02294.226.7962.743.078.2260.6606120.0219390.6386732.0032321.9328292.005742
338.589.934.5925.683.219.177182.327.8455.500.891.3320.6616140.0212260.6403882.0030341.9349892.005372
3417.179.869.18411.382.624.134353.174.84211.029.449.2920.6625560.0205570.6419982.0028481.9370322.005030
3534.359.738.36822.795.714.961684.790.41222.110.924.5490.6634430.0199300.6435132.0026761.9389562.004717
3668.719.476.73645.648.889.9111.328.987.06144.319.902.8500.6642790.0193390.6449392.0025211.9407212.004435


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
242020011
382020011
4164220112
5326330312
6647430313
712814771373
82562791843173
951248123663363
101.024892267173663
112.048157451123231193
124.096287782096432173
138.19251614736912233883
1416.38492425866622836903
1532.7681.6794391.24042131.2523
1665.5363.1568282.32881732.3333
17131.0725.8491.5504.2991.51434.3293
18262.14411.0072.8778.1302.86838.1333
19524.28820.5155.40315.1125.368315.1413
201.048.57638.51810.13528.38310.039328.4733
212.097.15272.93619.08953.84718.890354.0403
224.194.304138.83736.406102.43135.9683102.8633
238.388.608264.06768.949195.11868.2973195.7643
2416.777.216503.689130.715372.974129.8063373.8773
2533.554.432962.510249.975712.535247.9383714.5663
2667.108.8641.844.454478.2591.366.195474.06731.370.3813
27134.217.7283.540.793916.6932.624.100908.11232.632.6753
28268.435.4566.805.9131.759.3225.046.5911.742.41435.063.4933
29536.870.91213.099.5673.383.4199.716.1483.351.18439.748.3773
301.073.741.82425.254.9006.513.88918.741.0116.455.214318.799.6803
312.147.483.64848.750.72712.561.93836.188.78912.453.045336.297.6763
324.294.967.29694.226.79624.256.46069.970.33624.045.197370.181.5933
338.589.934.592182.327.84546.896.564135.431.28146.504.0733135.823.7663
3417.179.869.184353.174.84290.768.898262.405.94490.019.9573263.154.8793
3534.359.738.368684.790.412175.840.247508.950.165174.458.4433510.331.9633
3668.719.476.7361.328.987.061340.963.139988.023.922338.388.8833990.598.1723


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
122011100
242011100
384032101
4167243121
53213395332
66413395332
712830111887510
825680403916241426
95122001019839553967
101.02446322423892121101149
112.0481.005522482213256209327
124.0962.1371.1161.020465541466665
138.1924.4142.2902.1239671.1209901.337
1416.3849.1214.7154.4052.0042.3442.0352.738
1532.76818.6349.5559.0784.2254.7364.2105.463
1665.53637.83019.28618.5438.6199.6848.62510.902
17131.07276.73238.99237.73917.74319.40917.58421.996
18262.144155.08378.90576.17736.06339.29235.58644.142
19524.288313.648159.379154.26873.01179.37072.61288.655
201.048.576633.050321.713311.336148.452160.049147.448177.101
212.097.1521.275.809647.857627.951300.827321.998298.767354.217
224.194.3042.568.3031.303.2121.265.090608.580647.455603.021709.247
238.388.6085.167.8862.620.4262.547.4591.228.3781.301.8121.218.0441.419.652
2416.777.21610.393.1955.267.2375.125.9572.476.8022.615.7932.457.8582.842.742
2533.554.43220.892.05810.579.33710.312.7204.992.0195.255.9084.953.2925.690.839
2667.108.86441.975.00721.243.34920.731.65710.050.57610.556.4939.976.56711.391.371
27134.217.72884.301.88742.639.13441.662.75220.231.35621.194.04320.085.07922.791.409
28268.435.456169.257.17985.569.40583.687.77340.699.67242.533.28140.412.62445.611.602
29536.870.912339.728.516171.668.533168.059.98281.824.50185.352.24481.273.61891.278.153
301.073.741.824681.704.599344.327.584337.377.014164.440.359171.219.772163.380.452182.664.016
312.147.483.6481.367.612.603690.526.069677.086.533330.342.155343.435.633328.306.980365.527.835
324.294.967.2962.743.078.2261.384.509.7591.358.568.466663.461.409688.687.573659.515.998731.413.246
338.589.934.5925.500.891.3322.775.533.0912.725.358.2401.332.057.6671.380.786.8821.324.512.4791.463.534.304
3417.179.869.18411.029.449.2925.563.345.1955.466.104.0962.673.839.0382.767.983.0742.659.262.3472.928.364.833
3534.359.738.36822.110.924.54911.149.788.64910.961.135.8995.365.994.8945.548.139.2705.337.703.0135.859.087.372
3668.719.476.73644.319.902.85022.343.012.86521.976.889.98410.766.418.59711.119.108.72910.711.506.85611.722.868.668


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 3, 41, 23, 1, 1, 71, 17, 1, 127, 37, 1, 643, 19, 241, 1, 53, 1, 859, 1,
Found in Database : 5, 3, 41, 23, 71, 17, 127, 37, 643, 19, 241, 53, 859, 61, 47, 107, 59, 131, 353, 89, 43, 271,
Found in Database : 3, 5, 17, 19, 23, 37, 41, 43, 47, 53, 59, 61, 71, 89, 107, 127, 131,