Inhaltsverzeichnis

Development of
Algorithmic Constructions

22:05:47
Deutsch
19.Apr 2024

Polynom = x^2-36x+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) = 63 = 3*3*7
f(3) = 47 = 47
f(4) = 123 = 3*41
f(5) = 75 = 3*5*5
f(6) = 175 = 5*5*7
f(7) = 99 = 3*3*11
f(8) = 219 = 3*73
f(9) = 119 = 7*17
f(10) = 255 = 3*5*17
f(11) = 135 = 3*3*3*5
f(12) = 283 = 283
f(13) = 147 = 3*7*7
f(14) = 303 = 3*101
f(15) = 155 = 5*31
f(16) = 315 = 3*3*5*7
f(17) = 159 = 3*53
f(18) = 319 = 11*29
f(19) = 159 = 3*53
f(20) = 315 = 3*3*5*7
f(21) = 155 = 5*31
f(22) = 303 = 3*101
f(23) = 147 = 3*7*7
f(24) = 283 = 283
f(25) = 135 = 3*3*3*5
f(26) = 255 = 3*5*17
f(27) = 119 = 7*17
f(28) = 219 = 3*73
f(29) = 99 = 3*3*11
f(30) = 175 = 5*5*7
f(31) = 75 = 3*5*5
f(32) = 123 = 3*41
f(33) = 47 = 47
f(34) = 63 = 3*3*7
f(35) = 15 = 3*5
f(36) = 5 = 5
f(37) = 21 = 3*7
f(38) = 81 = 3*3*3*3
f(39) = 61 = 61
f(40) = 165 = 3*5*11
f(41) = 105 = 3*5*7
f(42) = 257 = 257
f(43) = 153 = 3*3*17
f(44) = 357 = 3*7*17
f(45) = 205 = 5*41
f(46) = 465 = 3*5*31
f(47) = 261 = 3*3*29
f(48) = 581 = 7*83
f(49) = 321 = 3*107
f(50) = 705 = 3*5*47
f(51) = 385 = 5*7*11
f(52) = 837 = 3*3*3*31
f(53) = 453 = 3*151
f(54) = 977 = 977
f(55) = 525 = 3*5*5*7
f(56) = 1125 = 3*3*5*5*5
f(57) = 601 = 601
f(58) = 1281 = 3*7*61
f(59) = 681 = 3*227
f(60) = 1445 = 5*17*17
f(61) = 765 = 3*3*5*17
f(62) = 1617 = 3*7*7*11
f(63) = 853 = 853
f(64) = 1797 = 3*599
f(65) = 945 = 3*3*3*5*7
f(66) = 1985 = 5*397
f(67) = 1041 = 3*347
f(68) = 2181 = 3*727
f(69) = 1141 = 7*163
f(70) = 2385 = 3*3*5*53
f(71) = 1245 = 3*5*83
f(72) = 2597 = 7*7*53
f(73) = 1353 = 3*11*41
f(74) = 2817 = 3*3*313
f(75) = 1465 = 5*293
f(76) = 3045 = 3*5*7*29
f(77) = 1581 = 3*17*31
f(78) = 3281 = 17*193
f(79) = 1701 = 3*3*3*3*3*7
f(80) = 3525 = 3*5*5*47
f(81) = 1825 = 5*5*73
f(82) = 3777 = 3*1259
f(83) = 1953 = 3*3*7*31
f(84) = 4037 = 11*367
f(85) = 2085 = 3*5*139
f(86) = 4305 = 3*5*7*41
f(87) = 2221 = 2221
f(88) = 4581 = 3*3*509
f(89) = 2361 = 3*787
f(90) = 4865 = 5*7*139
f(91) = 2505 = 3*5*167
f(92) = 5157 = 3*3*3*191
f(93) = 2653 = 7*379
f(94) = 5457 = 3*17*107
f(95) = 2805 = 3*5*11*17
f(96) = 5765 = 5*1153
f(97) = 2961 = 3*3*7*47
f(98) = 6081 = 3*2027
f(99) = 3121 = 3121
f(100) = 6405 = 3*5*7*61

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

f(0)=5
f(1)=3
f(2)=7
f(3)=47
f(4)=41
f(5)=1
f(6)=1
f(7)=11
f(8)=73
f(9)=17
f(10)=1
f(11)=1
f(12)=283
f(13)=1
f(14)=101
f(15)=31
f(16)=1
f(17)=53
f(18)=29
f(19)=1
f(20)=1
f(21)=1
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=1
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)=61
f(40)=1
f(41)=1
f(42)=257
f(43)=1
f(44)=1
f(45)=1
f(46)=1
f(47)=1
f(48)=83
f(49)=107
f(50)=1
f(51)=1
f(52)=1
f(53)=151
f(54)=977
f(55)=1
f(56)=1
f(57)=601
f(58)=1
f(59)=227
f(60)=1
f(61)=1
f(62)=1
f(63)=853
f(64)=599
f(65)=1
f(66)=397
f(67)=347
f(68)=727
f(69)=163
f(70)=1
f(71)=1
f(72)=1
f(73)=1
f(74)=313
f(75)=293
f(76)=1
f(77)=1
f(78)=193
f(79)=1
f(80)=1
f(81)=1
f(82)=1259
f(83)=1
f(84)=367
f(85)=139
f(86)=1
f(87)=2221
f(88)=509
f(89)=787
f(90)=1
f(91)=167
f(92)=191
f(93)=379
f(94)=1
f(95)=1
f(96)=1153
f(97)=1
f(98)=2027
f(99)=3121

b) Substitution of the polynom
The polynom f(x)=x^2-36x+5 could be written as f(y)= y^2-319 with x=y+18

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-18
f'(x)>2x-37 with x > 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

5, 3, 7, 47, 41, 1, 1, 11, 73, 17, 1, 1, 283, 1, 101, 31, 1, 53, 29, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 61, 1, 1, 257, 1, 1, 1, 1, 1, 83, 107, 1, 1, 1, 151, 977, 1, 1, 601, 1, 227, 1, 1, 1, 853, 599, 1, 397, 347, 727, 163, 1, 1, 1, 1, 313, 293, 1, 1, 193, 1, 1, 1, 1259, 1, 367, 139, 1, 2221, 509, 787, 1, 167, 191, 379, 1, 1, 1153, 1, 2027, 3121, 1, 1, 6737, 1151, 337, 1, 1, 181, 251, 1327, 1, 1, 1, 1451, 1, 1, 619, 431, 461, 1, 2017, 1, 3499, 1, 1213, 1, 2269, 1, 1, 353, 1, 1, 1811, 239, 1, 1, 907, 769, 14081, 1, 971, 1481, 1, 2551, 331, 1, 1, 8161, 5527, 401, 311, 1, 5879, 1279, 1, 1, 1, 3167, 6427, 9781, 1, 1, 1201, 1, 2333, 2129, 1439, 521, 541, 1249, 1, 2309, 709, 439, 1, 811, 1, 1783, 1, 1, 1, 1, 2953, 1223, 1297, 919, 5581, 523, 1361, 14461, 1951, 1, 1033, 5051, 929, 443, 1, 1, 4583, 5407, 1, 1, 1597, 5651, 1, 1, 467, 571, 11927, 1, 7309, 1231, 1777, 1109, 1, 1283, 1, 6547, 4409, 409, 2699, 1, 677, 1, 1, 4253, 1, 1, 43781, 1, 1, 1, 1, 1093, 46337, 1559, 1049, 1, 1, 8087, 1399, 1, 16619, 25153, 2417, 569, 10333, 1, 1031, 2411, 1, 1, 54437, 9151, 1, 1117, 751, 9467, 1, 3209, 1, 839, 19739, 1, 3541, 1, 4079, 30841, 1, 1, 12637, 1, 1019, 32353, 21739, 1, 13249, 3709, 547, 1, 911, 1, 1, 1, 1, 1, 1, 12007, 1, 1741, 1637, 1, 24919, 1, 2447, 1, 733, 1, 1531, 1, 1, 2659, 1, 5779, 823, 1, 661, 1, 1, 42181, 809, 2851, 86117, 4817, 4157, 1, 1, 1, 89681, 1, 1, 1307, 1, 15451, 13331, 1, 1, 47581, 4561, 16067, 3881, 1, 1, 2909, 33179, 1, 20161, 1, 4861, 51361, 2297, 3467, 14951, 17551, 1, 1523, 7151, 17987, 9871, 1, 1, 11057, 5297, 6217, 112577, 1, 1, 57301, 12809, 1, 1, 3911, 1, 1, 39799, 4003, 1, 1, 1, 61441, 1, 1381, 1, 1, 42139, 12713, 947, 3061, 129281, 1, 1, 1, 44059, 1303, 1123, 1493, 9007, 1, 859, 2543, 1, 1, 4229, 1, 2239, 1, 28513, 23887, 2287, 72421, 1, 1, 147137, 1, 49559, 1, 2003, 8389, 21683, 1, 10223, 15413, 2459, 25951, 1, 1, 1171, 4673, 1, 3821, 32257, 1801, 7757, 81853, 1, 1, 1, 27827, 55927, 12043, 1, 1, 171077, 4093, 1129, 1021, 1, 29207, 176081, 9829, 1693, 1, 1459, 1, 181157, 6067, 1, 1193, 20509, 997, 5323, 1, 1229, 3257, 1291, 1, 1, 1, 5857, 97081, 13003, 1, 196817, 1, 1, 19949, 1, 33547, 1699, 1, 1511, 2927, 1, 1, 1087, 1, 13963, 983, 10061, 11789, 1, 1427, 1, 2633, 2677, 1, 1, 36607, 24509, 15823, 14831, 1, 32051, 12517, 1423, 22721, 1, 4243, 230081, 5501, 15467, 23297, 1, 1, 235877, 1579, 1, 1, 1, 40127, 6907, 1, 81239, 1, 81899, 2741, 49537, 1, 83227, 1, 1, 8423, 2371, 42451, 1, 25673, 17183, 1, 259781, 14489, 3491, 1, 87959, 14717, 37991, 1, 1051, 1, 1429, 1, 1877, 1301, 1, 137653, 92119, 1321, 1, 1, 1, 2657, 1, 1, 5813, 2803, 1, 1, 1, 4397, 1787, 6961, 6521, 29453, 2011, 49451, 297797, 1, 2857, 3203, 9157, 1, 3581, 1, 102199, 1, 34313, 10331, 8887, 52027, 1, 1, 1, 2111, 317777, 2531, 1, 32117, 21487, 1, 1, 54287, 1, 32801, 1, 55051, 47351, 11087, 7417, 1, 3863, 56207, 1277, 1, 2143, 170953, 1, 1, 1, 1, 16561, 174481, 1, 1, 1, 1, 1, 5087, 23819, 59747, 51383, 1, 1, 2137, 1, 1847, 366917, 1753, 24623, 6389, 1, 1, 14969, 2503, 1993, 188953, 11489, 1, 10903, 21269, 1, 1619, 25771, 1, 389057, 9293, 2777, 3571, 1, 1607, 396581, 1, 1, 40037, 1613, 1, 404177, 1, 1, 1, 1, 7603, 1, 1, 138139, 1, 6619, 1, 2707, 1, 1, 211741, 28319, 2029, 1, 1, 20477, 43133, 28843, 24109, 5653, 72767, 5839, 1, 48953, 73651, 443237, 1, 1, 223621, 1, 1, 5309, 1, 21617, 227653, 152219, 1, 91873, 2477, 154027, 4729, 1, 1, 66791, 2521, 52253, 9433, 1, 4651, 1, 1, 1, 4363, 1933, 1, 16693, 16183, 4637, 244141, 54409, 81847, 14071, 1, 5003, 2087, 9767, 16651, 100189, 1, 5417, 1, 1, 1, 509477, 7741, 1, 1, 1, 12301, 1, 86587, 1, 1, 4259, 3019, 6841, 5869, 35311, 265561, 3623, 29669, 107101, 2557, 179479, 269953, 20051, 1, 21773, 5351, 1, 1, 36683, 1, 79031, 30817, 1, 1, 3389, 3461, 562181, 13421, 1, 1, 1, 94951, 33601, 1, 1823, 26171, 1, 13781, 1, 1, 1, 1, 195479, 1, 16843, 98507, 17957, 297061, 1, 1, 35221, 14293, 22291, 1, 1, 2063, 5683, 3079, 5821, 2113, 4357, 34217, 88211, 4127, 1, 1, 1, 6131, 11399, 1, 1, 1, 1, 21163, 127297, 35449, 1, 1, 42859, 1, 6397, 107951, 5279, 1, 1, 3517, 93683, 109567, 1, 1, 1, 110651, 3677, 1, 44587, 335221, 224027, 5347, 1, 22567, 1901, 1, 75773, 22787, 2797, 114487, 8501, 1, 1, 1, 1, 5531, 21169, 2801, 1, 39089, 22751, 1, 1, 1, 26371, 16993, 715397, 1, 15973, 1, 240727, 120647, 20731, 8081, 242999, 1, 34877, 2719, 1, 1, 2969, 7883, 3301, 1, 746177, 4021, 1, 1, 50207, 11437, 3727, 1, 50671, 10883, 254519, 1, 45121, 1, 1, 386161, 1, 1, 155521, 1, 4133, 391453, 3583, 1, 1, 43889, 263927, 5153, 3119, 1, 1871, 133451, 8629, 80429, 1, 4643, 15277, 1, 1, 81509, 272299, 1, 5903, 9137, 1, 1, 16231, 1, 4751, 1, 1, 59779, 2273, 28019, 168481, 20101, 94009, 423961, 8093, 28387, 77587, 1, 1, 1, 1979, 1, 864581, 144407, 1, 1, 96893, 13241, 1, 5851, 1, 6037, 42061, 1, 177409, 1, 17467, 446353, 27109, 1, 1, 1, 42961, 452041, 2237, 1, 129971, 1, 101513, 1, 1973, 2099, 54193, 1, 2467, 18541, 1, 17239, 11239, 31159, 1, 469321, 2549, 22441, 4019, 31547, 105373, 9697, 317419, 1, 1, 1, 320027, 481021,

6. Sequence of the polynom (only primes)

5, 3, 7, 47, 41, 11, 73, 17, 283, 101, 31, 53, 29, 61, 257, 83, 107, 151, 977, 601, 227, 853, 599, 397, 347, 727, 163, 313, 293, 193, 1259, 367, 139, 2221, 509, 787, 167, 191, 379, 1153, 2027, 3121, 6737, 1151, 337, 181, 251, 1327, 1451, 619, 431, 461, 2017, 3499, 1213, 2269, 353, 1811, 239, 907, 769, 14081, 971, 1481, 2551, 331, 8161, 5527, 401, 311, 5879, 1279, 3167, 6427, 9781, 1201, 2333, 2129, 1439, 521, 541, 1249, 2309, 709, 439, 811, 1783, 2953, 1223, 1297, 919, 5581, 523, 1361, 14461, 1951, 1033, 5051, 929, 443, 4583, 5407, 1597, 5651, 467, 571, 11927, 7309, 1231, 1777, 1109, 1283, 6547, 4409, 409, 2699, 677, 4253, 43781, 1093, 46337, 1559, 1049, 8087, 1399, 16619, 25153, 2417, 569, 10333, 1031, 2411, 54437, 9151, 1117, 751, 9467, 3209, 839, 19739, 3541, 4079, 30841, 12637, 1019, 32353, 21739, 13249, 3709, 547, 911, 12007, 1741, 1637, 24919, 2447, 733, 1531, 2659, 5779, 823, 661, 42181, 809, 2851, 86117, 4817, 4157, 89681, 1307, 15451, 13331, 47581, 4561, 16067, 3881, 2909, 33179, 20161, 4861, 51361, 2297, 3467, 14951, 17551, 1523, 7151, 17987, 9871, 11057, 5297, 6217, 112577, 57301, 12809, 3911, 39799, 4003, 61441, 1381, 42139, 12713, 947, 3061, 129281, 44059, 1303, 1123, 1493, 9007, 859, 2543, 4229, 2239, 28513, 23887, 2287, 72421, 147137, 49559, 2003, 8389, 21683, 10223, 15413, 2459, 25951, 1171, 4673, 3821, 32257, 1801, 7757, 81853, 27827, 55927, 12043, 171077, 4093, 1129, 1021, 29207, 176081, 9829, 1693, 1459, 181157, 6067, 1193, 20509, 997, 5323, 1229, 3257, 1291, 5857, 97081, 13003, 196817, 19949, 33547, 1699, 1511, 2927, 1087, 13963, 983, 10061, 11789, 1427, 2633, 2677, 36607, 24509, 15823, 14831, 32051, 12517, 1423, 22721, 4243, 230081, 5501, 15467, 23297, 235877, 1579, 40127, 6907, 81239, 81899, 2741, 49537, 83227, 8423, 2371, 42451, 25673, 17183, 259781, 14489, 3491, 87959, 14717, 37991, 1051, 1429, 1877, 1301, 137653, 92119, 1321, 2657, 5813, 2803, 4397, 1787, 6961, 6521, 29453, 2011, 49451, 297797, 2857, 3203, 9157, 3581, 102199, 34313, 10331, 8887, 52027, 2111, 317777, 2531, 32117, 21487, 54287, 32801, 55051, 47351, 11087, 7417, 3863, 56207, 1277, 2143, 170953, 16561, 174481, 5087, 23819, 59747, 51383, 2137, 1847, 366917, 1753, 24623, 6389, 14969, 2503, 1993, 188953, 11489, 10903, 21269, 1619, 25771, 389057, 9293, 2777, 3571, 1607, 396581, 40037, 1613, 404177, 7603, 138139, 6619, 2707, 211741, 28319, 2029, 20477, 43133, 28843, 24109, 5653, 72767, 5839, 48953, 73651, 443237, 223621, 5309, 21617, 227653, 152219, 91873, 2477, 154027, 4729, 66791, 2521, 52253, 9433, 4651, 4363, 1933, 16693, 16183, 4637, 244141, 54409, 81847, 14071, 5003, 2087, 9767, 16651, 100189, 5417, 509477, 7741, 12301, 86587, 4259, 3019, 6841, 5869, 35311, 265561, 3623, 29669, 107101, 2557, 179479, 269953, 20051, 21773, 5351, 36683, 79031, 30817, 3389, 3461, 562181, 13421, 94951, 33601, 1823, 26171, 13781, 195479, 16843, 98507, 17957, 297061, 35221, 14293, 22291, 2063, 5683, 3079, 5821, 2113, 4357, 34217, 88211, 4127, 6131, 11399, 21163, 127297, 35449, 42859, 6397, 107951, 5279, 3517, 93683, 109567, 110651, 3677, 44587, 335221, 224027, 5347, 22567, 1901, 75773, 22787, 2797, 114487, 8501, 5531, 21169, 2801, 39089, 22751, 26371, 16993, 715397, 15973, 240727, 120647, 20731, 8081, 242999, 34877, 2719, 2969, 7883, 3301, 746177, 4021, 50207, 11437, 3727, 50671, 10883, 254519, 45121, 386161, 155521, 4133, 391453, 3583, 43889, 263927, 5153, 3119, 1871, 133451, 8629, 80429, 4643, 15277, 81509, 272299, 5903, 9137, 16231, 4751, 59779, 2273, 28019, 168481, 20101, 94009, 423961, 8093, 28387, 77587, 1979, 864581, 144407, 96893, 13241, 5851, 6037, 42061, 177409, 17467, 446353, 27109, 42961, 452041, 2237, 129971, 101513, 1973, 2099, 54193, 2467, 18541, 17239, 11239, 31159, 469321, 2549, 22441, 4019, 31547, 105373, 9697, 317419, 320027, 481021,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-36x+5 and
the reducible primes which appear as divisor for the first time
p | x^2-36x+5 and p < x^2-36x+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)
1107160.7000000.1000000.7000000.0000000.0000000.000000
2100374330.3700000.0400000.3700005.2857144.0000005.500000
31.000582335490.5820000.0330000.58200015.7297308.25000016.636364
410.0006.2392256.0140.6239000.0225000.62390010.7199326.81818210.954463
5100.00064.1331.74262.3910.6413300.0174200.64133010.2793717.74222210.374293
61.000.000650.48414.143636.3410.6504840.0141430.65048410.1427358.11882910.199244
710.000.0006.566.385120.0626.446.3230.6566390.0120060.65663910.0946148.48914610.130297
8100.000.00066.123.4311.038.52065.084.9110.6612340.0103850.66123410.0699908.64986410.096439
91.000.000.000664.802.7039.154.686655.648.0170.6648030.0091550.66480310.0539668.81512710.073732


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
245141.2500000.2500001.0000001.6666671.0000002.000000
387160.8750000.1250000.7500001.4000001.0000001.500000
41610280.6250000.1250000.5000001.4285712.0000001.333333
532122100.3750000.0625000.3125001.2000001.0000001.250000
664204160.3125000.0625000.2500001.6666672.0000001.600000
7128505450.3906250.0390620.3515622.5000001.2500002.812500
825612891190.5000000.0351560.4648442.5600001.8000002.644444
9512281202610.5488280.0390620.5097662.1953122.2222222.193277
101.024598345640.5839840.0332030.5507812.1281141.7000002.160919
112.0481.223591.1640.5971680.0288090.5683592.0451511.7352942.063830
124.0962.512992.4130.6132810.0241700.5891112.0539661.6779662.073024
138.1925.0961844.9120.6220700.0224610.5996092.0286621.8585862.035640
1416.38410.33833710.0010.6309810.0205690.6104132.0286501.8315222.036034
1532.76820.79463720.1570.6345830.0194400.6151432.0114141.8902082.015498
1665.53641.8831.15140.7320.6390840.0175630.6215212.0141871.8069072.020737
17131.07284.2612.20882.0530.6428600.0168460.6260152.0118191.9183322.014460
18262.144169.2284.128165.1000.6455540.0157470.6298072.0083791.8695652.012114
19524.288339.7987.773332.0250.6481130.0148260.6332872.0079301.8829942.011054
201.048.576682.24614.784667.4620.6506400.0140990.6365412.0077991.9019682.010276
212.097.1521.368.86328.1081.340.7550.6527250.0134030.6393222.0064071.9012452.008736
224.194.3042.745.30753.3682.691.9390.6545320.0127240.6418082.0055381.8986772.007778
238.388.6085.504.823101.8865.402.9370.6562260.0121460.6440802.0051761.9091222.007080
2416.777.21611.036.356194.52410.841.8320.6578180.0115950.6462242.0048521.9092322.006655
2533.554.43222.119.701372.30521.747.3960.6592180.0110960.6481232.0042581.9139282.005878
2667.108.86444.328.176713.55843.614.6180.6605410.0106330.6499082.0040141.9165952.005510
27134.217.72888.818.7171.370.02487.448.6930.6617510.0102070.6515442.0036631.9199902.005032
28268.435.456177.939.4372.636.257175.303.1800.6628760.0098210.6530552.0034001.9242412.004640
29536.870.912356.438.4345.078.643351.359.7910.6639180.0094600.6544592.0031451.9264602.004298
301.073.741.824713.931.2019.793.096704.138.1050.6649000.0091210.6557802.0029581.9282902.004037


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
241010010
381010010
4162110110
5322110110
6644132110
71285143110
82569185130
95122011912170
101.02434133171160
112.04859158261320
124.09699198451530
138.1921841183871960
1416.384337133616511710
1532.768637163630613300
1665.5361.15111.15057115790
17131.0722.20812.2071.09311.1140
18262.1444.12814.1272.05012.0770
19524.2887.77317.7723.85313.9190
201.048.57614.784114.7837.38717.3960
212.097.15228.108128.10714.059114.0480
224.194.30453.368153.36726.646126.7210
238.388.608101.8861101.88550.892150.9930
2416.777.216194.5241194.52397.205197.3180
2533.554.432372.3051372.304186.2121186.0920
2667.108.864713.5581713.557356.7061356.8510
27134.217.7281.370.02411.370.023684.6991685.3240
28268.435.4562.636.25712.636.2561.318.07211.318.1840
29536.870.9125.078.64315.078.6422.538.35212.540.2900
301.073.741.8249.793.09619.793.0954.897.51914.895.5760


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
122100101
244121102
386222202
4168332213
53210352233
66416683445
71284524199141111
8256119625529312633
951226114011958736367
101.024564295267123151151139
112.0481.164617545256316292300
124.0962.4131.2421.169567629595622
138.1924.9122.5572.3531.1701.2521.2051.285
1416.38410.0015.1774.8222.4062.5802.4272.588
1532.76820.15710.3799.7764.8665.2634.8545.174
1665.53640.73221.03919.6919.93810.5529.84010.402
17131.07282.05342.26839.78319.99121.09719.86721.098
18262.144165.10084.98680.11240.18342.30540.29142.321
19524.288332.025170.041161.98280.63785.11481.22185.053
201.048.576667.462341.238326.222162.597170.614163.545170.706
212.097.1521.340.755684.790655.963327.190342.553328.706342.306
224.194.3042.691.9391.372.7061.319.231657.845687.178659.801687.115
238.388.6085.402.9372.752.4062.650.5291.322.7071.377.9051.324.8741.377.451
2416.777.21610.841.8325.517.1685.324.6622.657.1732.762.7452.659.5762.762.338
2533.554.43221.747.39611.059.49010.687.9045.337.8695.534.2515.338.6605.536.616
2667.108.86443.614.61822.166.59221.448.02410.714.83811.089.77010.717.12611.092.884
27134.217.72887.448.69344.415.84643.032.84521.498.92422.224.63921.501.94022.223.190
28268.435.456175.303.18088.982.28786.320.89143.126.23644.519.78243.134.34644.522.816
29536.870.912351.359.791178.233.448173.126.34186.496.44089.171.28786.511.03989.181.025
301.073.741.824704.138.105356.988.354347.149.749173.453.886178.601.865173.486.046178.596.308


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 3, 7, 47, 41, 1, 1, 11, 73, 17, 1, 1, 283, 1, 101, 31, 1, 53, 29, 1,
Found in Database : 5, 3, 7, 47, 41, 11, 73, 17, 283, 101, 31, 53, 29, 61,
Found in Database : 3, 5, 7, 11, 17, 29, 31, 41, 47, 53, 61, 73, 83, 101, 107, 139,