Inhaltsverzeichnis

Development of
Algorithmic Constructions

17:20:00
Deutsch
18.Apr 2024

Polynom = x^2+12x-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) = 3 = 3
f(2) = 81 = 3*3*3*3
f(3) = 1 = 1
f(4) = 45 = 3*3*5
f(5) = 3 = 3
f(6) = 1 = 1
f(7) = 3 = 3
f(8) = 51 = 3*17
f(9) = 5 = 5
f(10) = 111 = 3*37
f(11) = 9 = 3*3
f(12) = 179 = 179
f(13) = 27 = 3*3*3
f(14) = 255 = 3*5*17
f(15) = 37 = 37
f(16) = 339 = 3*113
f(17) = 3 = 3
f(18) = 431 = 431
f(19) = 15 = 3*5
f(20) = 531 = 3*3*59
f(21) = 73 = 73
f(22) = 639 = 3*3*71
f(23) = 87 = 3*29
f(24) = 755 = 5*151
f(25) = 51 = 3*17
f(26) = 879 = 3*293
f(27) = 59 = 59
f(28) = 1011 = 3*337
f(29) = 135 = 3*3*3*5
f(30) = 1151 = 1151
f(31) = 153 = 3*3*17
f(32) = 1299 = 3*433
f(33) = 43 = 43
f(34) = 1455 = 3*5*97
f(35) = 3 = 3
f(36) = 1619 = 1619
f(37) = 213 = 3*71
f(38) = 1791 = 3*3*199
f(39) = 235 = 5*47
f(40) = 1971 = 3*3*3*73
f(41) = 129 = 3*43
f(42) = 2159 = 17*127
f(43) = 141 = 3*47
f(44) = 2355 = 3*5*157
f(45) = 307 = 307
f(46) = 2559 = 3*853
f(47) = 333 = 3*3*37
f(48) = 2771 = 17*163
f(49) = 45 = 3*3*5
f(50) = 2991 = 3*997
f(51) = 97 = 97
f(52) = 3219 = 3*29*37
f(53) = 417 = 3*139
f(54) = 3455 = 5*691
f(55) = 447 = 3*149
f(56) = 3699 = 3*3*3*137
f(57) = 239 = 239
f(58) = 3951 = 3*3*439
f(59) = 255 = 3*5*17
f(60) = 4211 = 4211
f(61) = 543 = 3*181
f(62) = 4479 = 3*1493
f(63) = 577 = 577
f(64) = 4755 = 3*5*317
f(65) = 153 = 3*3*17
f(66) = 5039 = 5039
f(67) = 81 = 3*3*3*3
f(68) = 5331 = 3*1777
f(69) = 685 = 5*137
f(70) = 5631 = 3*1877
f(71) = 723 = 3*241
f(72) = 5939 = 5939
f(73) = 381 = 3*127
f(74) = 6255 = 3*3*5*139
f(75) = 401 = 401
f(76) = 6579 = 3*3*17*43
f(77) = 843 = 3*281
f(78) = 6911 = 6911
f(79) = 885 = 3*5*59
f(80) = 7251 = 3*2417
f(81) = 29 = 29
f(82) = 7599 = 3*17*149
f(83) = 243 = 3*3*3*3*3
f(84) = 7955 = 5*37*43
f(85) = 1017 = 3*3*113
f(86) = 8319 = 3*47*59
f(87) = 1063 = 1063
f(88) = 8691 = 3*2897
f(89) = 555 = 3*5*37
f(90) = 9071 = 47*193
f(91) = 579 = 3*193
f(92) = 9459 = 3*3*1051
f(93) = 1207 = 17*71
f(94) = 9855 = 3*3*3*5*73
f(95) = 1257 = 3*419
f(96) = 10259 = 10259
f(97) = 327 = 3*109
f(98) = 10671 = 3*3557
f(99) = 85 = 5*17
f(100) = 11091 = 3*3697

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

f(0)=109
f(1)=3
f(2)=1
f(3)=1
f(4)=5
f(5)=1
f(6)=1
f(7)=1
f(8)=17
f(9)=1
f(10)=37
f(11)=1
f(12)=179
f(13)=1
f(14)=1
f(15)=1
f(16)=113
f(17)=1
f(18)=431
f(19)=1
f(20)=59
f(21)=73
f(22)=71
f(23)=29
f(24)=151
f(25)=1
f(26)=293
f(27)=1
f(28)=337
f(29)=1
f(30)=1151
f(31)=1
f(32)=433
f(33)=43
f(34)=97
f(35)=1
f(36)=1619
f(37)=1
f(38)=199
f(39)=47
f(40)=1
f(41)=1
f(42)=127
f(43)=1
f(44)=157
f(45)=307
f(46)=853
f(47)=1
f(48)=163
f(49)=1
f(50)=997
f(51)=1
f(52)=1
f(53)=139
f(54)=691
f(55)=149
f(56)=137
f(57)=239
f(58)=439
f(59)=1
f(60)=4211
f(61)=181
f(62)=1493
f(63)=577
f(64)=317
f(65)=1
f(66)=5039
f(67)=1
f(68)=1777
f(69)=1
f(70)=1877
f(71)=241
f(72)=5939
f(73)=1
f(74)=1
f(75)=401
f(76)=1
f(77)=281
f(78)=6911
f(79)=1
f(80)=2417
f(81)=1
f(82)=1
f(83)=1
f(84)=1
f(85)=1
f(86)=1
f(87)=1063
f(88)=2897
f(89)=1
f(90)=193
f(91)=1
f(92)=1051
f(93)=1
f(94)=1
f(95)=419
f(96)=10259
f(97)=1
f(98)=3557
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+12x-109 could be written as f(y)= y^2-145 with x=y-6

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+6
f'(x)>2x+11

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, 3, 1, 1, 5, 1, 1, 1, 17, 1, 37, 1, 179, 1, 1, 1, 113, 1, 431, 1, 59, 73, 71, 29, 151, 1, 293, 1, 337, 1, 1151, 1, 433, 43, 97, 1, 1619, 1, 199, 47, 1, 1, 127, 1, 157, 307, 853, 1, 163, 1, 997, 1, 1, 139, 691, 149, 137, 239, 439, 1, 4211, 181, 1493, 577, 317, 1, 5039, 1, 1777, 1, 1877, 241, 5939, 1, 1, 401, 1, 281, 6911, 1, 2417, 1, 1, 1, 1, 1, 1, 1063, 2897, 1, 193, 1, 1051, 1, 1, 419, 10259, 1, 3557, 1, 3697, 1, 11519, 1, 797, 761, 4133, 263, 1, 1, 1, 1693, 1531, 1, 2851, 1, 1, 1873, 5077, 1, 15731, 1, 5413, 1031, 1117, 709, 467, 1, 1979, 1, 2039, 1, 18899, 1, 1297, 2467, 6673, 1, 349, 1, 7057, 2683, 7253, 919, 1, 1, 2551, 727, 1, 1, 1423, 1021, 8273, 1571, 1697, 1, 26099, 367, 1, 677, 9137, 1, 653, 1, 1, 3637, 3271, 1, 1039, 1, 1, 1949, 10513, 443, 6451, 1, 10993, 521, 661, 1, 733, 1451, 3911, 4447, 1, 757, 503, 773, 12497, 947, 12757, 1, 1, 1, 2657, 1, 13553, 1, 1, 1, 1, 1, 1597, 907, 1, 1, 1, 5653, 15217, 1, 46511, 1, 929, 1, 3217, 2029, 49139, 1033, 1, 631, 5659, 2141, 51839, 2179, 3517, 1663, 617, 1, 563, 1, 18517, 1, 509, 1187, 11491, 1, 6491, 1, 6599, 499, 827, 1, 1, 1933, 4157, 1, 3727, 887, 1, 811, 1, 1373, 3907, 2789, 1499, 1, 1, 719, 1, 1, 23537, 8893, 23893, 1, 14551, 1, 1, 4649, 24977, 1, 76031, 3191, 2857, 607, 1, 821, 79379, 3331, 571, 2027, 1601, 1, 82799, 1, 1, 10567, 1669, 3571, 86291, 1, 9719, 1, 9851, 3719, 17971, 3769, 1, 1, 30757, 1, 93491, 1307, 31573, 701, 6397, 1, 1, 1019, 10939, 2477, 1231, 1, 1, 1, 1, 1, 34513, 1447, 104831, 1, 2081, 1, 1, 1, 21751, 1, 1, 1, 12379, 1, 823, 1, 1, 14347, 1, 1613, 116819, 1, 39397, 743, 39857, 5011, 1, 1, 2719, 7691, 13751, 2593, 1, 1049, 42197, 15913, 1, 1, 1523, 1, 43633, 16453, 1, 1109, 133811, 2803, 15031, 8501, 1013, 1, 138239, 5791, 991, 1, 1, 1, 3037, 1993, 1, 18127, 48593, 1, 147311, 1, 1, 1, 983, 6299, 30391, 1, 1, 2411, 3041, 1, 156671, 1, 1, 9941, 10657, 3347, 161459, 6761, 18119, 1, 1, 1, 166319, 1741, 11197, 1, 56533, 1, 171251, 1, 57637, 10859, 58193, 7309, 35251, 1, 1163, 1, 6653, 1, 4217, 7591, 1, 1, 1, 1289, 186479, 1301, 1459, 1, 63317, 7951, 191699, 1, 1433, 6073, 1, 8171, 196991, 1, 1123, 12479, 66853, 1399, 40471, 941, 68053, 25633, 967, 1, 1, 1087, 23291, 26317, 1, 8849, 12547, 4463, 2473, 1, 72337, 1009, 4657, 1, 14717, 1, 1579, 1, 1987, 1879, 1, 1, 2819, 1, 46051, 4817, 1, 1, 1069, 1, 1723, 1, 79333, 1867, 1, 10039, 241919, 1, 3011, 3061, 1607, 1, 4201, 10369, 16657, 31357, 2269, 1, 253871, 1, 85297, 1889, 1, 10789, 51991, 5437, 1, 1, 29339, 1, 266111, 11131, 89393, 1, 1, 1, 9391, 3797, 5381, 1, 92177, 5783, 278639, 5827, 1, 35227, 10477, 11831, 7703, 1, 95717, 9007, 1321, 1, 1, 1, 1, 1, 98597, 1237, 297971, 1, 11117, 37657, 6719, 1, 304559, 1, 1, 1, 1, 1, 18307, 1, 20897, 19661, 2239, 1, 1, 2659, 1, 5021, 35831, 3371, 64951, 1, 109013, 41023, 1, 1, 8963, 2311, 1, 41887, 1, 1, 338579, 3539, 37879, 1, 12713, 1, 345599, 14449, 23197, 21821, 6869, 2441, 352691, 1, 1667, 44533, 1, 1, 71971, 3761, 13417, 45433, 40519, 3049, 8537, 7673, 3329, 1, 1, 1, 374399, 1, 125617, 1, 2143, 1, 1303, 15959, 8539, 48187, 1, 1, 389231, 1627, 7681, 49123, 131413, 1831, 1, 1, 7829, 12517, 1, 3359, 2909, 16901, 1559, 1, 1, 1, 412019, 1, 138197, 1, 1, 1453, 3851, 1, 1, 52957, 141653, 17761, 1789, 1787, 1, 1, 48091, 18089, 1, 18199, 146033, 3433, 146917, 1, 26083, 1, 148693, 55927, 29917, 9377, 451439, 9433, 50459, 1, 1, 1, 2927, 4801, 30817, 1811, 1, 1, 1, 1, 156817, 1, 157733, 9887, 95191, 19889, 1, 60013, 1, 1, 16699, 5059, 1, 61057, 1, 6823, 492659, 1, 1, 6211, 1, 1, 1487, 20939, 3733, 1, 56311, 2647, 4013, 4259, 170837, 3779, 171793, 1, 103651, 1, 173713, 65323, 4721, 1, 526931, 1, 3463, 16603, 11839, 22259, 535679, 22381, 1, 1, 1861, 1, 7669, 7583, 36497, 1, 183473, 5749, 1, 1, 61819, 1, 20717, 23369, 2393, 1, 1, 1, 1, 1583, 15443, 1, 191473, 8999, 1, 1, 34147, 24251, 21613, 14627, 65179, 12253, 34687, 1, 1, 74287, 198613, 8297, 598931, 1, 2749, 9431, 4691, 1, 1, 25409, 67931, 1, 68279, 1, 617651, 25801, 206933, 77797, 41597, 1, 627119, 1, 210097, 15797, 12421, 1, 17207, 13297, 1, 1, 1, 26861, 646271, 5399, 1, 20347, 217573, 1, 1, 9133, 7577, 1, 1, 2767, 6863, 13903, 2753, 4931, 14939, 1, 675539, 3527, 3187, 4253, 227377, 9497, 1, 3181, 1, 43151, 230693, 1, 695411, 1, 4567, 87553, 1, 7331, 1, 1, 1, 88813, 5051, 1, 715571, 1, 5099, 1, 48157, 30169, 12301, 1783, 81019, 1, 1, 7649, 1, 1, 49297, 92647, 247633, 5171, 1, 1, 2293, 2539, 1, 1, 1, 7901, 1, 5953, 84859, 6379, 5081, 1, 2357, 48281, 1, 1, 6883, 1, 1901, 19577, 1, 1, 788399, 8231, 17599, 2111, 1, 1, 799091, 1, 267557, 1, 15809, 1, 161971, 11273, 1, 1, 1, 1, 820691, 1, 91591, 2791, 6133, 1, 831599, 1, 2003, 1, 279637, 11677, 14281, 1, 56417, 1, 3881, 35491, 5237, 7129, 1, 53699, 3299, 17977, 1, 36109, 17029, 108793, 290737, 1, 5801, 1, 1, 1, 58897, 1, 1, 18523, 98999, 11161, 2687, 37361, 1, 2207, 1, 1, 302053, 1, 909971, 1, 304597, 3947, 305873, 19157, 184291, 19237, 102811, 115903, 11471, 7759, 1, 9739, 2459, 14669, 1, 13093, 1, 13147, 316177, 1, 4349, 1, 25847, 39929, 2371, 120277, 1, 1, 968111, 1, 11173, 1, 325333, 1, 195991, 2273, 2089, 1, 329297, 1, 991871, 41411, 110651, 31183, 1, 2609, 1, 41911, 335957, 25247,

6. Sequence of the polynom (only primes)

109, 3, 5, 17, 37, 179, 113, 431, 59, 73, 71, 29, 151, 293, 337, 1151, 433, 43, 97, 1619, 199, 47, 127, 157, 307, 853, 163, 997, 139, 691, 149, 137, 239, 439, 4211, 181, 1493, 577, 317, 5039, 1777, 1877, 241, 5939, 401, 281, 6911, 2417, 1063, 2897, 193, 1051, 419, 10259, 3557, 3697, 11519, 797, 761, 4133, 263, 1693, 1531, 2851, 1873, 5077, 15731, 5413, 1031, 1117, 709, 467, 1979, 2039, 18899, 1297, 2467, 6673, 349, 7057, 2683, 7253, 919, 2551, 727, 1423, 1021, 8273, 1571, 1697, 26099, 367, 677, 9137, 653, 3637, 3271, 1039, 1949, 10513, 443, 6451, 10993, 521, 661, 733, 1451, 3911, 4447, 757, 503, 773, 12497, 947, 12757, 2657, 13553, 1597, 907, 5653, 15217, 46511, 929, 3217, 2029, 49139, 1033, 631, 5659, 2141, 51839, 2179, 3517, 1663, 617, 563, 18517, 509, 1187, 11491, 6491, 6599, 499, 827, 1933, 4157, 3727, 887, 811, 1373, 3907, 2789, 1499, 719, 23537, 8893, 23893, 14551, 4649, 24977, 76031, 3191, 2857, 607, 821, 79379, 3331, 571, 2027, 1601, 82799, 10567, 1669, 3571, 86291, 9719, 9851, 3719, 17971, 3769, 30757, 93491, 1307, 31573, 701, 6397, 1019, 10939, 2477, 1231, 34513, 1447, 104831, 2081, 21751, 12379, 823, 14347, 1613, 116819, 39397, 743, 39857, 5011, 2719, 7691, 13751, 2593, 1049, 42197, 15913, 1523, 43633, 16453, 1109, 133811, 2803, 15031, 8501, 1013, 138239, 5791, 991, 3037, 1993, 18127, 48593, 147311, 983, 6299, 30391, 2411, 3041, 156671, 9941, 10657, 3347, 161459, 6761, 18119, 166319, 1741, 11197, 56533, 171251, 57637, 10859, 58193, 7309, 35251, 1163, 6653, 4217, 7591, 1289, 186479, 1301, 1459, 63317, 7951, 191699, 1433, 6073, 8171, 196991, 1123, 12479, 66853, 1399, 40471, 941, 68053, 25633, 967, 1087, 23291, 26317, 8849, 12547, 4463, 2473, 72337, 1009, 4657, 14717, 1579, 1987, 1879, 2819, 46051, 4817, 1069, 1723, 79333, 1867, 10039, 241919, 3011, 3061, 1607, 4201, 10369, 16657, 31357, 2269, 253871, 85297, 1889, 10789, 51991, 5437, 29339, 266111, 11131, 89393, 9391, 3797, 5381, 92177, 5783, 278639, 5827, 35227, 10477, 11831, 7703, 95717, 9007, 1321, 98597, 1237, 297971, 11117, 37657, 6719, 304559, 18307, 20897, 19661, 2239, 2659, 5021, 35831, 3371, 64951, 109013, 41023, 8963, 2311, 41887, 338579, 3539, 37879, 12713, 345599, 14449, 23197, 21821, 6869, 2441, 352691, 1667, 44533, 71971, 3761, 13417, 45433, 40519, 3049, 8537, 7673, 3329, 374399, 125617, 2143, 1303, 15959, 8539, 48187, 389231, 1627, 7681, 49123, 131413, 1831, 7829, 12517, 3359, 2909, 16901, 1559, 412019, 138197, 1453, 3851, 52957, 141653, 17761, 1789, 1787, 48091, 18089, 18199, 146033, 3433, 146917, 26083, 148693, 55927, 29917, 9377, 451439, 9433, 50459, 2927, 4801, 30817, 1811, 156817, 157733, 9887, 95191, 19889, 60013, 16699, 5059, 61057, 6823, 492659, 6211, 1487, 20939, 3733, 56311, 2647, 4013, 4259, 170837, 3779, 171793, 103651, 173713, 65323, 4721, 526931, 3463, 16603, 11839, 22259, 535679, 22381, 1861, 7669, 7583, 36497, 183473, 5749, 61819, 20717, 23369, 2393, 1583, 15443, 191473, 8999, 34147, 24251, 21613, 14627, 65179, 12253, 34687, 74287, 198613, 8297, 598931, 2749, 9431, 4691, 25409, 67931, 68279, 617651, 25801, 206933, 77797, 41597, 627119, 210097, 15797, 12421, 17207, 13297, 26861, 646271, 5399, 20347, 217573, 9133, 7577, 2767, 6863, 13903, 2753, 4931, 14939, 675539, 3527, 3187, 4253, 227377, 9497, 3181, 43151, 230693, 695411, 4567, 87553, 7331, 88813, 5051, 715571, 5099, 48157, 30169, 12301, 1783, 81019, 7649, 49297, 92647, 247633, 5171, 2293, 2539, 7901, 5953, 84859, 6379, 5081, 2357, 48281, 6883, 1901, 19577, 788399, 8231, 17599, 2111, 799091, 267557, 15809, 161971, 11273, 820691, 91591, 2791, 6133, 831599, 2003, 279637, 11677, 14281, 56417, 3881, 35491, 5237, 7129, 53699, 3299, 17977, 36109, 17029, 108793, 290737, 5801, 58897, 18523, 98999, 11161, 2687, 37361, 2207, 302053, 909971, 304597, 3947, 305873, 19157, 184291, 19237, 102811, 115903, 11471, 7759, 9739, 2459, 14669, 13093, 13147, 316177, 4349, 25847, 39929, 2371, 120277, 968111, 11173, 325333, 195991, 2273, 2089, 329297, 991871, 41411, 110651, 31183, 2609, 41911, 335957, 25247,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2+12x-109 and
the reducible primes which appear as divisor for the first time
p | x^2+12x-109 and p < x^2+12x-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)
1105230.5000000.2000000.5000000.0000000.0000000.000000
21005411430.5400000.1100000.54000010.8000005.50000014.333333
31.000620655550.6200000.0650000.62000011.4814825.90909112.906977
410.0006.4194455.9740.6419000.0445000.64190010.3532266.84615410.763964
5100.00065.3233.52261.8010.6532300.0352200.65323010.1765077.91460710.344995
61.000.000660.24529.113631.1320.6602450.0291130.66024510.1073898.26604210.212327
710.000.0006.648.940244.7366.404.2040.6648940.0244740.66489410.0704148.40641610.147170
8100.000.00066.839.6292.119.20264.720.4270.6683960.0211920.66839610.0526748.65913510.105928
91.000.000.000671.114.45818.711.672652.402.7860.6711140.0187120.67111410.0406678.82958410.080323
1010.000.000.0006.732.898.459167.457.7486.565.440.7110.6732900.0167460.67329010.0324148.94937310.063477


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)
122111.0000000.5000000.5000000.0000000.0000000.000000
243210.7500000.5000000.2500001.5000002.0000001.000000
384220.5000000.2500000.2500001.3333331.0000002.000000
4167340.4375000.1875000.2500001.7500001.5000002.000000
532175120.5312500.1562500.3750002.4285711.6666673.000000
664377300.5781250.1093750.4687502.1764711.4000002.500000
71287113580.5546880.1015620.4531251.9189191.8571431.933333
8256151181330.5898440.0703120.5195312.1267601.3846152.293103
9512313382750.6113280.0742190.5371092.0728482.1111112.067669
101.024637685690.6220700.0664060.5556642.0351441.7894742.069091
112.0481.2821151.1670.6259770.0561520.5698242.0125591.6911762.050967
124.0962.5912132.3780.6325680.0520020.5805662.0210611.8521742.037704
138.1925.2413824.8590.6397710.0466310.5931402.0227711.7934272.043314
1416.38410.5547109.8440.6441650.0433350.6008302.0137381.8586392.025931
1532.76821.2381.33019.9080.6481320.0405880.6075442.0123181.8732392.022349
1665.53642.7032.41440.2890.6515960.0368350.6147612.0106881.8150382.023759
17131.07285.7274.51281.2150.6540450.0344240.6196212.0075171.8690972.015811
18262.144172.1458.517163.6280.6566810.0324900.6241912.0080601.8876332.014751
19524.288345.25116.100329.1510.6585140.0307080.6278062.0055831.8903372.011581
201.048.576692.41830.348662.0700.6603410.0289420.6313992.0055501.8849692.011448
212.097.1521.388.00357.6071.330.3960.6618510.0274690.6343822.0045741.8982142.009449
224.194.3042.782.251109.2992.672.9520.6633400.0260590.6372812.0044991.8973212.009140
238.388.6085.574.874207.8745.367.0000.6645770.0247810.6397962.0037281.9018842.007892
2416.777.21611.169.699396.39510.773.3040.6657660.0236270.6421392.0035791.9069002.007323
2533.554.43222.375.736758.92621.616.8100.6668490.0226180.6442312.0032531.9145702.006516
2667.108.86444.818.1571.456.13343.362.0240.6678430.0216980.6461452.0029801.9186762.005940
27134.217.72889.762.2542.798.13386.964.1210.6687810.0208480.6479332.0028101.9216192.005537
28268.435.456179.752.4855.384.630174.367.8550.6696300.0200590.6495712.0025401.9243652.005055
29536.870.912359.937.09010.374.600349.562.4900.6704350.0193240.6511112.0024041.9267062.004742
301.073.741.824720.681.83920.017.772700.664.0670.6711870.0186430.6525442.0022441.9294982.004403
312.147.483.6481.442.864.97438.669.3631.404.195.6110.6718860.0180070.6538802.0020831.9317522.004092
324.294.967.2962.888.548.49774.801.8252.813.746.6720.6725430.0174160.6551262.0019531.9343952.003814
338.589.934.5925.782.404.265144.846.3185.637.557.9470.6731600.0168620.6562982.0018371.9364012.003577
3417.179.869.18411.574.834.020280.763.16611.294.070.8540.6737440.0163430.6574012.0017341.9383522.003362


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
121100010
242100020
382100020
4163110120
5325130122
6647150322
7128131110625
8256181160927
951238136017219
101.02468166033233
112.0481151113059254
124.096213121101062105
138.192382138001912189
1416.384710170803592349
1532.7681.33011.32806592669
1665.5362.41412.41201.20521.207
17131.0724.51214.51002.26122.249
18262.1448.51718.51504.26324.252
19524.28816.100116.09808.03228.066
201.048.57630.348130.346015.122215.224
212.097.15257.607157.605028.730228.875
224.194.304109.2991109.297054.583254.714
238.388.608207.8741207.8720104.0242103.848
2416.777.216396.3951396.3930198.1952198.198
2533.554.432758.9261758.9240379.4492379.475
2667.108.8641.456.13311.456.1310727.4362728.695
27134.217.7282.798.13312.798.13101.398.19121.399.940
28268.435.4565.384.63015.384.62802.691.77822.692.850
29536.870.91210.374.600110.374.59805.186.70125.187.897
301.073.741.82420.017.772120.017.770010.009.256210.008.514
312.147.483.64838.669.363138.669.361019.336.393219.332.968
324.294.967.29674.801.825174.801.823037.402.255237.399.568
338.589.934.592144.846.3181144.846.316072.423.970272.422.346
3417.179.869.184280.763.1661280.763.1640140.388.9232140.374.241


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
121000100
241000100
382011100
4164122110
53212555223
6643018108697
712858322418121810
8256133745735314126
951227515711671667959
101.024569318249146134160129
112.0481.167628537311265319272
124.0962.3781.2381.138640548642548
138.1924.8592.5402.3171.3351.0831.3101.131
1416.3849.8445.1194.7232.6582.2672.6442.275
1532.76819.90810.2819.6255.3184.5795.3604.651
1665.53640.28920.70819.57910.6889.44410.7159.442
17131.07281.21541.84239.37121.45819.12321.48219.152
18262.144163.62884.01879.60843.09938.60343.16238.764
19524.288329.151169.199159.95086.40577.96286.52578.259
201.048.576662.070339.989322.079172.947157.721173.395158.007
212.097.1521.330.396682.084648.310347.131317.923347.742317.600
224.194.3042.672.9521.367.6291.305.321696.294640.135696.937639.586
238.388.6085.367.0002.742.4062.624.5921.394.4331.288.4421.396.3381.287.787
2416.777.21610.773.3045.498.6455.274.6572.795.7422.590.3672.797.0012.590.194
2533.554.43221.616.81011.021.71010.595.0985.600.8125.206.1815.603.2905.206.527
2667.108.86443.362.02422.088.50021.273.52211.216.64010.464.55011.220.36810.460.466
27134.217.72886.964.12144.265.33942.698.78022.465.64021.016.36222.467.88521.014.234
28268.435.456174.367.85588.682.99285.684.86144.979.59842.199.26844.989.59042.199.399
29536.870.912349.562.490177.671.020171.891.46890.057.64284.716.86690.069.35984.718.623
301.073.741.824700.664.067355.908.928344.755.137180.313.959170.012.654180.327.963170.009.491
312.147.483.6481.404.195.611712.839.410691.356.199360.996.121341.095.339360.991.641341.112.510
324.294.967.2962.813.746.6721.427.582.9591.386.163.711722.666.308684.208.747722.665.186684.206.431
338.589.934.5925.637.557.9472.858.834.9462.778.722.9991.446.582.4471.372.185.5741.446.571.6531.372.218.273
3417.179.869.18411.294.070.8545.724.652.8395.569.418.0132.895.566.7852.751.472.9022.895.531.3992.751.499.768


8. Check for existing Integer Sequences by OEIS

Found in Database : 109, 3, 1, 1, 5, 1, 1, 1, 17, 1, 37, 1, 179, 1, 1, 1, 113, 1, 431, 1,
Found in Database : 109, 3, 5, 17, 37, 179, 113, 431, 59, 73, 71, 29, 151, 293, 337, 1151, 433, 43, 97, 1619, 199, 47,
Found in Database : 3, 5, 17, 29, 37, 43, 47, 59, 71, 73, 97, 109, 113, 127, 137, 139, 149,