Inhaltsverzeichnis

Development of
Algorithmic Constructions

05:35:20
Deutsch
19.Apr 2024

Polynom = x^2-108x+19

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) = 19 = 19
f(1) = 11 = 11
f(2) = 193 = 193
f(3) = 37 = 37
f(4) = 397 = 397
f(5) = 31 = 31
f(6) = 593 = 593
f(7) = 43 = 43
f(8) = 781 = 11*71
f(9) = 109 = 109
f(10) = 961 = 31*31
f(11) = 131 = 131
f(12) = 1133 = 11*103
f(13) = 19 = 19
f(14) = 1297 = 1297
f(15) = 43 = 43
f(16) = 1453 = 1453
f(17) = 191 = 191
f(18) = 1601 = 1601
f(19) = 209 = 11*19
f(20) = 1741 = 1741
f(21) = 113 = 113
f(22) = 1873 = 1873
f(23) = 121 = 11*11
f(24) = 1997 = 1997
f(25) = 257 = 257
f(26) = 2113 = 2113
f(27) = 271 = 271
f(28) = 2221 = 2221
f(29) = 71 = 71
f(30) = 2321 = 11*211
f(31) = 37 = 37
f(32) = 2413 = 19*127
f(33) = 307 = 307
f(34) = 2497 = 11*227
f(35) = 317 = 317
f(36) = 2573 = 31*83
f(37) = 163 = 163
f(38) = 2641 = 19*139
f(39) = 167 = 167
f(40) = 2701 = 37*73
f(41) = 341 = 11*31
f(42) = 2753 = 2753
f(43) = 347 = 347
f(44) = 2797 = 2797
f(45) = 11 = 11
f(46) = 2833 = 2833
f(47) = 89 = 89
f(48) = 2861 = 2861
f(49) = 359 = 359
f(50) = 2881 = 43*67
f(51) = 361 = 19*19
f(52) = 2893 = 11*263
f(53) = 181 = 181
f(54) = 2897 = 2897
f(55) = 181 = 181
f(56) = 2893 = 11*263
f(57) = 361 = 19*19
f(58) = 2881 = 43*67
f(59) = 359 = 359
f(60) = 2861 = 2861
f(61) = 89 = 89
f(62) = 2833 = 2833
f(63) = 11 = 11
f(64) = 2797 = 2797
f(65) = 347 = 347
f(66) = 2753 = 2753
f(67) = 341 = 11*31
f(68) = 2701 = 37*73
f(69) = 167 = 167
f(70) = 2641 = 19*139
f(71) = 163 = 163
f(72) = 2573 = 31*83
f(73) = 317 = 317
f(74) = 2497 = 11*227
f(75) = 307 = 307
f(76) = 2413 = 19*127
f(77) = 37 = 37
f(78) = 2321 = 11*211
f(79) = 71 = 71
f(80) = 2221 = 2221
f(81) = 271 = 271
f(82) = 2113 = 2113
f(83) = 257 = 257
f(84) = 1997 = 1997
f(85) = 121 = 11*11
f(86) = 1873 = 1873
f(87) = 113 = 113
f(88) = 1741 = 1741
f(89) = 209 = 11*19
f(90) = 1601 = 1601
f(91) = 191 = 191
f(92) = 1453 = 1453
f(93) = 43 = 43
f(94) = 1297 = 1297
f(95) = 19 = 19
f(96) = 1133 = 11*103
f(97) = 131 = 131
f(98) = 961 = 31*31
f(99) = 109 = 109
f(100) = 781 = 11*71

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

f(0)=19
f(1)=11
f(2)=193
f(3)=37
f(4)=397
f(5)=31
f(6)=593
f(7)=43
f(8)=71
f(9)=109
f(10)=1
f(11)=131
f(12)=103
f(13)=1
f(14)=1297
f(15)=1
f(16)=1453
f(17)=191
f(18)=1601
f(19)=1
f(20)=1741
f(21)=113
f(22)=1873
f(23)=1
f(24)=1997
f(25)=257
f(26)=2113
f(27)=271
f(28)=2221
f(29)=1
f(30)=211
f(31)=1
f(32)=127
f(33)=307
f(34)=227
f(35)=317
f(36)=83
f(37)=163
f(38)=139
f(39)=167
f(40)=73
f(41)=1
f(42)=2753
f(43)=347
f(44)=2797
f(45)=1
f(46)=2833
f(47)=89
f(48)=2861
f(49)=359
f(50)=67
f(51)=1
f(52)=263
f(53)=181
f(54)=2897
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)=1
f(75)=1
f(76)=1
f(77)=1
f(78)=1
f(79)=1
f(80)=1
f(81)=1
f(82)=1
f(83)=1
f(84)=1
f(85)=1
f(86)=1
f(87)=1
f(88)=1
f(89)=1
f(90)=1
f(91)=1
f(92)=1
f(93)=1
f(94)=1
f(95)=1
f(96)=1
f(97)=1
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-108x+19 could be written as f(y)= y^2-2897 with x=y+54

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-54
f'(x)>2x-109 with x > 54

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

19, 11, 193, 37, 397, 31, 593, 43, 71, 109, 1, 131, 103, 1, 1297, 1, 1453, 191, 1601, 1, 1741, 113, 1873, 1, 1997, 257, 2113, 271, 2221, 1, 211, 1, 127, 307, 227, 317, 83, 163, 139, 167, 73, 1, 2753, 347, 2797, 1, 2833, 89, 2861, 359, 67, 1, 263, 181, 2897, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 239, 1, 467, 1, 1, 1, 947, 1, 1, 1, 1459, 199, 157, 233, 2003, 1, 2287, 1, 2579, 1, 2879, 379, 3187, 1, 1, 229, 1, 499, 4159, 541, 409, 1, 1, 1, 1, 673, 293, 719, 5939, 383, 1, 1, 353, 863, 7103, 1, 7507, 241, 7919, 1, 269, 1069, 797, 1123, 9203, 1, 877, 617, 10099, 1291, 10559, 1, 11027, 1, 11503, 367, 11987, 1, 12479, 1, 12979, 827, 13487, 859, 1, 1783, 1, 1, 1, 479, 821, 1, 1, 2053, 16703, 1, 557, 1097, 17839, 1, 1, 2339, 1, 1, 19603, 311, 1, 641, 1, 1, 1949, 2719, 22067, 1399, 1, 1439, 631, 1, 1, 3041, 24659, 1, 1, 401, 26003, 1, 26687, 1, 1, 1733, 653, 1777, 2617, 3643, 1, 3733, 1, 1, 373, 1, 31699, 1, 457, 1, 33203, 2099, 33967, 1, 34739, 4391, 3229, 1, 36307, 1, 3373, 1, 37907, 4789, 1249, 1, 2081, 1, 1091, 2549, 41203, 1, 2213, 5309, 42899, 677, 43759, 1381, 4057, 1, 45503, 5743, 4217, 2927, 47279, 1, 48179, 6079, 1, 563, 1613, 1, 1, 1, 51859, 1, 1427, 6659, 757, 3389, 4973, 3449, 55667, 7019, 1, 1, 1, 1, 569, 1847, 3137, 683, 60607, 7639, 1433, 1, 62639, 3947, 63667, 1, 727, 1, 1, 1, 997, 1, 1, 1, 68927, 1, 70003, 4409, 1061, 1, 811, 9091, 577, 839, 1019, 1171, 75503, 2377, 1, 9649, 7069, 9791, 1, 4967, 1, 5039, 81203, 10223, 2657, 10369, 601, 1, 84719, 1, 1, 983, 87103, 1, 1, 5557, 89519, 1, 1, 1, 91967, 1, 1, 733, 94447, 2971, 1153, 12041, 96959, 1109, 98227, 1, 5237, 1, 100787, 1, 102079, 12841, 5441, 3251, 1, 823, 1493, 1, 887, 13499, 1, 6833, 1, 6917, 111347, 1, 2621, 14173, 114067, 1, 1, 1, 116819, 1, 2749, 1, 1, 1, 121007, 7607, 1, 15391, 3347, 15569, 1, 1, 126703, 1, 128147, 1, 1, 1481, 131059, 8237, 132527, 8329, 1301, 16843, 1, 17029, 136979, 1, 12589, 1, 139987, 1, 1993, 17783, 911, 1, 3907, 1, 146099, 1669, 147647, 18553, 4813, 1, 150767, 1, 1259, 19141, 8101, 1, 1, 9769, 157103, 1, 8353, 1, 160319, 1831, 2417, 2543, 163567, 1, 165203, 20753, 166847, 20959, 168499, 1, 1, 10687, 171827, 1, 15773, 1, 1, 5501, 2423, 2777, 4153, 2039, 180287, 22643, 4919, 1039, 1, 1, 1, 23291, 1429, 23509, 1, 1483, 10037, 5987, 17497, 24169, 194239, 24391, 929, 1, 197807, 1129, 199603, 1, 1, 1, 1973, 6379, 1, 1609, 5591, 1367, 18973, 26203, 1, 13217, 19309, 1, 214259, 1, 216127, 1, 218003, 1, 1, 1, 977, 2531, 223679, 1, 1, 14159, 2741, 1, 20857, 1, 231359, 1, 1, 7321, 1, 3691, 237203, 1567, 239167, 2729, 1, 1, 243119, 1, 245107, 30763, 2267, 31013, 249107, 1, 1, 7879, 1553, 31769, 23197, 1033, 13537, 16139, 6029, 16267, 8429, 1, 1, 33049, 265427, 1, 6221, 1049, 3797, 33829, 1, 1, 24889, 1, 1, 1, 1, 34883, 1, 35149, 1181, 1, 1489, 1, 286547, 1, 1, 1, 1607, 1, 1619, 1, 295219, 37039, 1423, 37313, 299603, 9397, 27437, 4733, 16001, 1, 306239, 1, 308467, 1759, 1979, 19489, 1, 1, 315199, 39541, 317459, 1, 319727, 1, 1, 1303, 2333, 2141, 2699, 20483, 1, 20627, 8951, 41543, 333503, 3803, 1, 10531, 338159, 1, 17921, 42709, 342847, 43003, 3167, 21649, 1663, 1, 349939, 43891, 32029, 44189, 1, 1, 357103, 11197, 11597, 4099, 361919, 2389, 1, 1, 1, 1, 1933, 2437, 2837, 1, 1, 1, 4231, 5903, 34457, 47533, 1583, 47843, 383987, 24077, 20341, 2203, 1, 48779, 391487, 4463, 1, 1, 396527, 1, 399059, 1, 3319, 50359, 13037, 25339, 36973, 1, 409267, 1, 1531, 1, 4993, 1, 417007, 1, 419603, 4783, 11411, 1, 424819, 26633, 427439, 1, 39097, 53923, 4201, 1, 2083, 6823, 1, 13729, 6577, 55249, 23333, 1, 446003, 1, 448687, 2557, 6737, 56591, 454079, 56929, 1559, 1, 1, 1, 5569, 1, 1, 1, 467699, 1543, 470447, 1, 473203, 5393, 11069, 59669, 478739, 1, 3067, 15091, 3697, 1, 1, 1, 44537, 30707, 492719, 1, 2371, 62119, 498367, 62473, 501203, 1, 504047, 1, 506899, 63541, 6983, 1, 4703, 1, 2671, 32309, 518387, 1, 47389, 1, 1, 1, 47917, 1, 1, 2143, 1, 1, 535859, 1, 538799, 33767, 28513, 6173, 4289, 1, 2131, 1, 1, 8627, 50329, 69389, 556607, 69763, 50873, 35069, 562607, 35257, 15287, 70891, 8009, 1, 5059, 2239, 574703, 1637, 18637, 1, 1, 1, 583859, 36587, 1, 36779, 13721, 73943, 53917, 1, 596179, 18679, 31541, 2347, 14009, 6863, 605503, 75883, 1, 3467, 4817, 38333, 2269, 1, 19937, 1, 56473, 1, 1, 1, 1, 4139, 630719, 79039, 3889, 39719, 1, 1, 640307, 80239, 1823, 7331, 9109, 20261, 1, 10181, 653203, 81853, 1, 1913, 34721, 41333, 5479, 1, 4793, 2693, 1, 1951, 672787, 1, 1, 21179, 2819, 1, 18451, 1, 686003, 42979, 4229, 2273, 62969, 1, 695999, 2357, 63577, 1, 2593, 5503, 706067, 88469, 1787, 8081, 712819, 44657, 8629, 4079, 1, 90163, 38053, 1, 726419, 1, 1, 22861, 38593, 91873, 66973, 1, 10139, 1, 17293, 1, 7253, 1, 3557, 94033, 754003, 1, 757487, 11863, 1, 1, 1, 1, 1, 48109, 771503, 1, 70457, 1, 778559, 1, 25229, 1, 3461, 2237, 1, 98873, 1, 9029, 796339, 1, 42101, 1, 11317, 2341, 1, 101113, 21911, 25391, 1, 1, 4519, 2383, 1, 5417, 825203, 1, 26737, 1, 832499, 1, 836159, 1, 4397, 13151, 843503, 26417, 77017, 106129, 850879, 106591, 77689, 53527, 1, 53759, 2311, 1, 2731, 9859, 1, 1, 8011, 1, 876947, 2969, 880703, 110323, 1, 1, 80749, 55633,

6. Sequence of the polynom (only primes)

19, 11, 193, 37, 397, 31, 593, 43, 71, 109, 131, 103, 1297, 1453, 191, 1601, 1741, 113, 1873, 1997, 257, 2113, 271, 2221, 211, 127, 307, 227, 317, 83, 163, 139, 167, 73, 2753, 347, 2797, 2833, 89, 2861, 359, 67, 263, 181, 2897, 239, 467, 947, 1459, 199, 157, 233, 2003, 2287, 2579, 2879, 379, 3187, 229, 499, 4159, 541, 409, 673, 293, 719, 5939, 383, 353, 863, 7103, 7507, 241, 7919, 269, 1069, 797, 1123, 9203, 877, 617, 10099, 1291, 10559, 11027, 11503, 367, 11987, 12479, 12979, 827, 13487, 859, 1783, 479, 821, 2053, 16703, 557, 1097, 17839, 2339, 19603, 311, 641, 1949, 2719, 22067, 1399, 1439, 631, 3041, 24659, 401, 26003, 26687, 1733, 653, 1777, 2617, 3643, 3733, 373, 31699, 457, 33203, 2099, 33967, 34739, 4391, 3229, 36307, 3373, 37907, 4789, 1249, 2081, 1091, 2549, 41203, 2213, 5309, 42899, 677, 43759, 1381, 4057, 45503, 5743, 4217, 2927, 47279, 48179, 6079, 563, 1613, 51859, 1427, 6659, 757, 3389, 4973, 3449, 55667, 7019, 569, 1847, 3137, 683, 60607, 7639, 1433, 62639, 3947, 63667, 727, 997, 68927, 70003, 4409, 1061, 811, 9091, 577, 839, 1019, 1171, 75503, 2377, 9649, 7069, 9791, 4967, 5039, 81203, 10223, 2657, 10369, 601, 84719, 983, 87103, 5557, 89519, 91967, 733, 94447, 2971, 1153, 12041, 96959, 1109, 98227, 5237, 100787, 102079, 12841, 5441, 3251, 823, 1493, 887, 13499, 6833, 6917, 111347, 2621, 14173, 114067, 116819, 2749, 121007, 7607, 15391, 3347, 15569, 126703, 128147, 1481, 131059, 8237, 132527, 8329, 1301, 16843, 17029, 136979, 12589, 139987, 1993, 17783, 911, 3907, 146099, 1669, 147647, 18553, 4813, 150767, 1259, 19141, 8101, 9769, 157103, 8353, 160319, 1831, 2417, 2543, 163567, 165203, 20753, 166847, 20959, 168499, 10687, 171827, 15773, 5501, 2423, 2777, 4153, 2039, 180287, 22643, 4919, 1039, 23291, 1429, 23509, 1483, 10037, 5987, 17497, 24169, 194239, 24391, 929, 197807, 1129, 199603, 1973, 6379, 1609, 5591, 1367, 18973, 26203, 13217, 19309, 214259, 216127, 218003, 977, 2531, 223679, 14159, 2741, 20857, 231359, 7321, 3691, 237203, 1567, 239167, 2729, 243119, 245107, 30763, 2267, 31013, 249107, 7879, 1553, 31769, 23197, 1033, 13537, 16139, 6029, 16267, 8429, 33049, 265427, 6221, 1049, 3797, 33829, 24889, 34883, 35149, 1181, 1489, 286547, 1607, 1619, 295219, 37039, 1423, 37313, 299603, 9397, 27437, 4733, 16001, 306239, 308467, 1759, 1979, 19489, 315199, 39541, 317459, 319727, 1303, 2333, 2141, 2699, 20483, 20627, 8951, 41543, 333503, 3803, 10531, 338159, 17921, 42709, 342847, 43003, 3167, 21649, 1663, 349939, 43891, 32029, 44189, 357103, 11197, 11597, 4099, 361919, 2389, 1933, 2437, 2837, 4231, 5903, 34457, 47533, 1583, 47843, 383987, 24077, 20341, 2203, 48779, 391487, 4463, 396527, 399059, 3319, 50359, 13037, 25339, 36973, 409267, 1531, 4993, 417007, 419603, 4783, 11411, 424819, 26633, 427439, 39097, 53923, 4201, 2083, 6823, 13729, 6577, 55249, 23333, 446003, 448687, 2557, 6737, 56591, 454079, 56929, 1559, 5569, 467699, 1543, 470447, 473203, 5393, 11069, 59669, 478739, 3067, 15091, 3697, 44537, 30707, 492719, 2371, 62119, 498367, 62473, 501203, 504047, 506899, 63541, 6983, 4703, 2671, 32309, 518387, 47389, 47917, 2143, 535859, 538799, 33767, 28513, 6173, 4289, 2131, 8627, 50329, 69389, 556607, 69763, 50873, 35069, 562607, 35257, 15287, 70891, 8009, 5059, 2239, 574703, 1637, 18637, 583859, 36587, 36779, 13721, 73943, 53917, 596179, 18679, 31541, 2347, 14009, 6863, 605503, 75883, 3467, 4817, 38333, 2269, 19937, 56473, 4139, 630719, 79039, 3889, 39719, 640307, 80239, 1823, 7331, 9109, 20261, 10181, 653203, 81853, 1913, 34721, 41333, 5479, 4793, 2693, 1951, 672787, 21179, 2819, 18451, 686003, 42979, 4229, 2273, 62969, 695999, 2357, 63577, 2593, 5503, 706067, 88469, 1787, 8081, 712819, 44657, 8629, 4079, 90163, 38053, 726419, 22861, 38593, 91873, 66973, 10139, 17293, 7253, 3557, 94033, 754003, 757487, 11863, 48109, 771503, 70457, 778559, 25229, 3461, 2237, 98873, 9029, 796339, 42101, 11317, 2341, 101113, 21911, 25391, 4519, 2383, 5417, 825203, 26737, 832499, 836159, 4397, 13151, 843503, 26417, 77017, 106129, 850879, 106591, 77689, 53527, 53759, 2311, 2731, 9859, 8011, 876947, 2969, 880703, 110323, 80749, 55633,

7. Distribution of the primes

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

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)
11010911.0000000.9000000.1000000.0000000.0000000.000000
2100423480.4200000.3400000.0800004.2000003.7777788.000000
31.0006093832260.6090000.3830000.22600014.50000011.26470628.250000
410.0006.6702.8843.7860.6670000.2884000.37860010.9523817.53002616.752213
5100.00067.99322.18245.8110.6799300.2218200.45811010.1938537.69140112.100105
61.000.000683.051178.047505.0040.6830510.1780470.50500410.0459028.02664311.023641
710.000.0006.843.5791.493.3595.350.2200.6843580.1493360.53502210.0191348.38744310.594411
8100.000.00068.539.60712.846.72155.692.8860.6853960.1284670.55692910.0151708.60256710.409457
91.000.000.000686.234.167112.735.244573.498.9230.6862340.1127350.57349910.0122288.77541110.297525
1010.000.000.0006.869.063.7141.004.511.4895.864.552.2250.6869060.1004510.58645510.0097958.91035810.225917


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
389811.1250001.0000000.1250001.8000001.600000inf
416141220.8750000.7500000.1250001.5555561.5000002.000000
532262240.8125000.6875000.1250001.8571431.8333332.000000
664423480.6562500.5312500.1250001.6153851.5454552.000000
7128494180.3828120.3203120.0625001.1666671.2058821.000000
8256121100210.4726560.3906250.0820312.4693882.4390242.625000
9512287210770.5605470.4101560.1503912.3719012.1000003.666667
101.0246243922320.6093750.3828120.2265622.1742161.8666673.012987
112.0481.3107225880.6396480.3525390.2871092.0993591.8418372.534483
124.0962.6791.3171.3620.6540530.3215330.3325202.0450381.8241002.316327
138.1925.4332.4003.0330.6632080.2929690.3702392.0279961.8223232.226872
1416.38410.9894.4516.5380.6707150.2716670.3990482.0226401.8545832.155622
1532.76822.1428.20513.9370.6757200.2503970.4253232.0149241.8434062.131692
1665.53644.48515.16829.3170.6787870.2314450.4473422.0090781.8486292.103537
17131.07289.17028.25660.9140.6803130.2155760.4647372.0044961.8628692.077770
18262.144178.57252.709125.8630.6811980.2010690.4801292.0026021.8654092.066241
19524.288357.76098.741259.0190.6823730.1883340.4940402.0034501.8733232.057944
201.048.576716.291185.915530.3760.6831080.1773020.5058062.0021551.8828552.047634
212.097.1521.433.444351.7411.081.7030.6835190.1677230.5157962.0012041.8919452.039502
224.194.3042.868.680667.2922.201.3880.6839470.1590950.5248522.0012501.8971122.035113
238.388.6085.740.0361.268.0344.472.0020.6842660.1511610.5331042.0009331.9002692.031446
2416.777.21611.485.7612.416.7359.069.0260.6846050.1440490.5405562.0009911.9058912.027957
2533.554.43222.983.3634.614.79318.368.5700.6849580.1375320.5474262.0010311.9095162.025418
2667.108.86445.985.3018.834.61937.150.6820.6852340.1316460.5535882.0008081.9144132.022513
27134.217.72892.007.55416.941.47175.066.0830.6855100.1262240.5592862.0008031.9176232.020584
28268.435.456184.086.57932.538.800151.547.7790.6857760.1212160.5645592.0007771.9206602.018858
29536.870.912368.305.48962.595.875305.709.6140.6860220.1165940.5694292.0007191.9237302.017249
301.073.741.824736.862.105120.593.705616.268.4000.6862560.1123120.5739452.0006821.9265442.015862
312.147.483.6481.474.190.158232.648.7621.241.541.3960.6864730.1083360.5781382.0006331.9291952.014611
324.294.967.2962.949.246.940449.406.1222.499.840.8180.6866750.1046360.5820402.0005881.9316942.013498
338.589.934.5925.900.133.670869.120.3775.031.013.2930.6868660.1011790.5856872.0005561.9339312.012533
3417.179.869.18411.803.316.0361.682.750.92010.120.565.1160.6870430.0979490.5890942.0005171.9361542.011636


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
123211200
245411220
388622321
41612933441
532221488473
664341915117115
71284121201112117
8256100485217381629
95122109711333743172
101.0243921792135514556136
112.048722333389107263104248
124.0961.317597720187474194462
138.1922.4001.0811.319336856351857
1416.3844.4512.0472.4046161.5866371.612
1532.7688.2053.7524.4531.1092.9571.1562.983
1665.53615.1686.8508.3182.0375.4952.0705.566
17131.07228.25612.76415.4923.79510.3153.80810.338
18262.14452.70923.76228.9477.01719.3137.06619.313
19524.28898.74144.39254.34913.04436.25013.15436.293
201.048.576185.91583.597102.31824.48968.18624.69768.543
212.097.152351.741157.857193.88446.345129.56246.364129.470
224.194.304667.292299.586367.70687.825245.49987.735246.233
238.388.6081.268.034569.168698.866166.336466.953166.256468.489
2416.777.2162.416.7351.083.8071.332.928316.211891.201316.145893.178
2533.554.4324.614.7932.069.5482.545.245603.0581.703.437601.9631.706.335
2667.108.8648.834.6193.961.6044.873.0151.151.2003.265.1751.152.0103.266.234
27134.217.72816.941.4717.593.5109.347.9612.203.0636.264.8212.206.4056.267.182
28268.435.45632.538.80014.580.69117.958.1094.226.76212.037.4624.228.75112.045.825
29536.870.91262.595.87528.042.33834.553.5378.121.77623.171.9748.123.82623.178.299
301.073.741.824120.593.70554.003.99566.589.71015.624.98144.668.81415.630.82444.669.086
312.147.483.648232.648.762104.158.980128.489.78230.110.50686.215.84830.114.16586.208.243
324.294.967.296449.406.122201.156.075248.250.04758.098.936166.609.61458.102.842166.594.730
338.589.934.592869.120.377388.918.493480.201.884112.242.521322.319.173112.243.557322.315.126
3417.179.869.1841.682.750.920752.847.976929.902.944217.104.692624.268.864217.096.849624.280.515


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
381010001
4162110002
5324310103
6648440404
71288440404
82562110113495
951277324519123016
101.02423210512766388246
112.048588285303178105185120
124.0961.362667695402267413280
138.1923.0331.4971.536885639889620
1416.3846.5383.2633.2751.8461.4121.8691.411
1532.76813.9376.8877.0503.9073.0723.9093.049
1665.53629.31714.58214.7358.0206.7398.0316.527
17131.07260.91430.38830.52616.50913.99216.59713.816
18262.144125.86362.88262.98133.92329.12133.91128.908
19524.288259.019129.206129.81369.17060.28169.24360.325
201.048.576530.376264.604265.772140.911124.155141.116124.194
212.097.1521.081.703539.289542.414286.694254.593286.150254.266
224.194.3042.201.3881.097.6171.103.771580.727520.582580.577519.502
238.388.6084.472.0022.230.7602.241.2421.174.9951.061.3831.175.0061.060.618
2416.777.2169.069.0264.525.0224.544.0042.375.5212.159.3042.377.3842.156.817
2533.554.43218.368.5709.166.0479.202.5234.797.0164.384.8224.803.1394.383.593
2667.108.86437.150.68218.540.67118.610.0119.683.4558.890.2469.688.3508.888.631
27134.217.72875.066.08337.457.91137.608.17219.531.03018.002.70819.533.93117.998.414
28268.435.456151.547.77975.630.64075.917.13939.350.66936.423.70239.359.42636.413.982
29536.870.912305.709.614152.580.032153.129.58279.240.66873.608.64179.254.32273.605.983
301.073.741.824616.268.400307.608.614308.659.786159.480.008148.647.309159.501.573148.639.510
312.147.483.6481.241.541.396619.770.431621.770.965320.825.191299.933.616320.862.134299.920.455
324.294.967.2962.499.840.8181.247.982.2031.251.858.615645.149.205604.771.956645.156.529604.763.128
338.589.934.5925.031.013.2932.511.747.5682.519.265.7251.296.805.7491.218.697.0441.296.773.6881.218.736.812
3417.179.869.18410.120.565.1165.052.998.1445.067.566.9722.605.710.6012.454.587.3332.605.680.0222.454.587.160


8. Check for existing Integer Sequences by OEIS

Found in Database : 19, 11, 193, 37, 397, 31, 593, 43, 71, 109, 1, 131, 103, 1, 1297, 1, 1453, 191, 1601, 1,
Found in Database : 19, 11, 193, 37, 397, 31, 593, 43, 71, 109, 131, 103, 1297, 1453, 191, 1601, 1741, 113, 1873, 1997, 257, 2113, 271, 2221, 211, 127, 307, 227, 317, 83, 163, 139, 167,
Found in Database : 11, 19, 31, 37, 43, 67, 71, 73, 83, 89, 103, 109, 113, 127, 131, 139,