Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:15:11
Deutsch
19.Apr 2024

Polynom = x^2-28x+37

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) = 37 = 37
f(1) = 5 = 5
f(2) = 15 = 3*5
f(3) = 19 = 19
f(4) = 59 = 59
f(5) = 39 = 3*13
f(6) = 95 = 5*19
f(7) = 55 = 5*11
f(8) = 123 = 3*41
f(9) = 67 = 67
f(10) = 143 = 11*13
f(11) = 75 = 3*5*5
f(12) = 155 = 5*31
f(13) = 79 = 79
f(14) = 159 = 3*53
f(15) = 79 = 79
f(16) = 155 = 5*31
f(17) = 75 = 3*5*5
f(18) = 143 = 11*13
f(19) = 67 = 67
f(20) = 123 = 3*41
f(21) = 55 = 5*11
f(22) = 95 = 5*19
f(23) = 39 = 3*13
f(24) = 59 = 59
f(25) = 19 = 19
f(26) = 15 = 3*5
f(27) = 5 = 5
f(28) = 37 = 37
f(29) = 33 = 3*11
f(30) = 97 = 97
f(31) = 65 = 5*13
f(32) = 165 = 3*5*11
f(33) = 101 = 101
f(34) = 241 = 241
f(35) = 141 = 3*47
f(36) = 325 = 5*5*13
f(37) = 185 = 5*37
f(38) = 417 = 3*139
f(39) = 233 = 233
f(40) = 517 = 11*47
f(41) = 285 = 3*5*19
f(42) = 625 = 5*5*5*5
f(43) = 341 = 11*31
f(44) = 741 = 3*13*19
f(45) = 401 = 401
f(46) = 865 = 5*173
f(47) = 465 = 3*5*31
f(48) = 997 = 997
f(49) = 533 = 13*41
f(50) = 1137 = 3*379
f(51) = 605 = 5*11*11
f(52) = 1285 = 5*257
f(53) = 681 = 3*227
f(54) = 1441 = 11*131
f(55) = 761 = 761
f(56) = 1605 = 3*5*107
f(57) = 845 = 5*13*13
f(58) = 1777 = 1777
f(59) = 933 = 3*311
f(60) = 1957 = 19*103
f(61) = 1025 = 5*5*41
f(62) = 2145 = 3*5*11*13
f(63) = 1121 = 19*59
f(64) = 2341 = 2341
f(65) = 1221 = 3*11*37
f(66) = 2545 = 5*509
f(67) = 1325 = 5*5*53
f(68) = 2757 = 3*919
f(69) = 1433 = 1433
f(70) = 2977 = 13*229
f(71) = 1545 = 3*5*103
f(72) = 3205 = 5*641
f(73) = 1661 = 11*151
f(74) = 3441 = 3*31*37
f(75) = 1781 = 13*137
f(76) = 3685 = 5*11*67
f(77) = 1905 = 3*5*127
f(78) = 3937 = 31*127
f(79) = 2033 = 19*107
f(80) = 4197 = 3*1399
f(81) = 2165 = 5*433
f(82) = 4465 = 5*19*47
f(83) = 2301 = 3*13*59
f(84) = 4741 = 11*431
f(85) = 2441 = 2441
f(86) = 5025 = 3*5*5*67
f(87) = 2585 = 5*11*47
f(88) = 5317 = 13*409
f(89) = 2733 = 3*911
f(90) = 5617 = 41*137
f(91) = 2885 = 5*577
f(92) = 5925 = 3*5*5*79
f(93) = 3041 = 3041
f(94) = 6241 = 79*79
f(95) = 3201 = 3*11*97
f(96) = 6565 = 5*13*101
f(97) = 3365 = 5*673
f(98) = 6897 = 3*11*11*19
f(99) = 3533 = 3533
f(100) = 7237 = 7237

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-28x+37

f(0)=37
f(1)=5
f(2)=3
f(3)=19
f(4)=59
f(5)=13
f(6)=1
f(7)=11
f(8)=41
f(9)=67
f(10)=1
f(11)=1
f(12)=31
f(13)=79
f(14)=53
f(15)=1
f(16)=1
f(17)=1
f(18)=1
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)=97
f(31)=1
f(32)=1
f(33)=101
f(34)=241
f(35)=47
f(36)=1
f(37)=1
f(38)=139
f(39)=233
f(40)=1
f(41)=1
f(42)=1
f(43)=1
f(44)=1
f(45)=401
f(46)=173
f(47)=1
f(48)=997
f(49)=1
f(50)=379
f(51)=1
f(52)=257
f(53)=227
f(54)=131
f(55)=761
f(56)=107
f(57)=1
f(58)=1777
f(59)=311
f(60)=103
f(61)=1
f(62)=1
f(63)=1
f(64)=2341
f(65)=1
f(66)=509
f(67)=1
f(68)=919
f(69)=1433
f(70)=229
f(71)=1
f(72)=641
f(73)=151
f(74)=1
f(75)=137
f(76)=1
f(77)=127
f(78)=1
f(79)=1
f(80)=1399
f(81)=433
f(82)=1
f(83)=1
f(84)=431
f(85)=2441
f(86)=1
f(87)=1
f(88)=409
f(89)=911
f(90)=1
f(91)=577
f(92)=1
f(93)=3041
f(94)=1
f(95)=1
f(96)=1
f(97)=673
f(98)=1
f(99)=3533

b) Substitution of the polynom
The polynom f(x)=x^2-28x+37 could be written as f(y)= y^2-159 with x=y+14

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-14
f'(x)>2x-29 with x > 13

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

37, 5, 3, 19, 59, 13, 1, 11, 41, 67, 1, 1, 31, 79, 53, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 97, 1, 1, 101, 241, 47, 1, 1, 139, 233, 1, 1, 1, 1, 1, 401, 173, 1, 997, 1, 379, 1, 257, 227, 131, 761, 107, 1, 1777, 311, 103, 1, 1, 1, 2341, 1, 509, 1, 919, 1433, 229, 1, 641, 151, 1, 137, 1, 127, 1, 1, 1399, 433, 1, 1, 431, 2441, 1, 1, 409, 911, 1, 577, 1, 3041, 1, 1, 1, 673, 1, 3533, 7237, 1, 1, 3881, 2647, 1, 1, 283, 8677, 1, 3019, 1, 1889, 1607, 757, 5021, 683, 1, 10657, 1811, 1, 1129, 1, 5861, 11941, 2027, 2477, 1, 389, 1, 13297, 1, 2753, 7001, 1, 557, 1, 499, 15217, 1, 1, 1597, 1, 1, 16741, 8501, 1151, 1753, 1, 3011, 1667, 1861, 1259, 1, 19441, 1, 4001, 2029, 1, 10433, 21157, 1, 4349, 1, 677, 11321, 353, 1, 23557, 11933, 8059, 1, 1, 1, 1, 1171, 1, 1, 26737, 347, 27397, 1, 1871, 1291, 701, 1, 1, 1, 10039, 15233, 30817, 1039, 1, 839, 977, 16301, 1, 1, 1087, 17033, 883, 1, 1, 5927, 1, 1, 2447, 3709, 3407, 6311, 571, 773, 1, 1, 39841, 1, 739, 821, 1063, 1, 631, 1423, 1, 463, 1, 541, 1, 1, 971, 743, 1409, 1, 9473, 1, 2539, 1, 1, 4957, 4547, 647, 863, 467, 691, 26141, 4057, 8867, 10733, 5413, 18199, 2503, 1, 1867, 1, 1499, 1, 28961, 11681, 1, 59377, 809, 1, 1217, 12269, 937, 2011, 2417, 1, 1277, 1, 569, 1, 599, 1, 33461, 6131, 1, 13697, 1, 1783, 661, 1, 2371, 1303, 2777, 24247, 3331, 2953, 1, 3943, 1, 25339, 1, 617, 1, 78241, 1, 1, 7993, 797, 1, 81637, 8221, 5519, 41681, 587, 14087, 17021, 1, 28759, 1, 4603, 1, 17729, 44621, 29947, 4111, 1, 1, 8387, 787, 31159, 1, 1, 15887, 2593, 48281, 1, 9781, 1, 1, 7669, 1, 1, 1373, 102241, 1319, 1, 947, 34939, 52733, 877, 3559, 4297, 4157, 1, 2879, 22013, 3691, 1, 1, 37579, 1031, 22817, 1, 1723, 58061, 1, 1, 2003, 1801, 119557, 1, 733, 60821, 1, 20507, 24749, 1, 41719, 1, 1, 4243, 25601, 5851, 3319, 1, 26177, 1, 2243, 66533, 1, 1223, 2081, 1193, 1, 1297, 1, 1069, 4507, 1, 1, 14197, 1, 71741, 144241, 1, 29153, 14653, 1327, 1, 1, 4987, 1583, 6871, 50647, 4019, 2791, 1, 1, 77933, 1, 1, 31649, 2039, 1321, 2591, 1, 1, 1, 881, 164677, 1, 11087, 83561, 8839, 2557, 2609, 17041, 5189, 1, 4217, 5791, 34913, 87701, 4519, 2393, 1, 1, 3389, 1, 3181, 18217, 7321, 1613, 4993, 92801, 1, 1, 188197, 31511, 1, 19081, 983, 96281, 193441, 1, 39041, 19609, 1, 1, 15289, 1, 2111, 2143, 67447, 7817, 40829, 1367, 205957, 9403, 69259, 1, 1, 2699, 211441, 106181, 1, 1, 1, 36011, 19727, 1, 14591, 1, 2063, 36947, 1, 1, 1117, 1427, 1, 1, 9133, 114641, 6977, 115601, 1, 1, 1787, 9041, 1, 1, 4327, 39827, 18457, 1, 16127, 1, 7867, 1103, 5231, 4937, 1, 11311, 1, 1, 1, 1, 2287, 1, 255877, 8563, 51581, 129461, 7877, 10037, 1, 1, 1153, 132533, 6823, 26713, 53633, 44867, 270241, 1, 3631, 27337, 1, 1481, 276517, 1, 1, 1, 5297, 1, 1, 28393, 94999, 13003, 287137, 1, 1231, 3541, 5113, 1, 4517, 1, 295777, 1, 9029, 5981, 60029, 50207, 1789, 1, 1, 6113, 1, 3947, 9967, 2819, 20747, 8219, 10111, 1, 3323, 2437, 1, 14503, 3301, 10711, 1, 4373, 108247, 1283, 1, 10939, 329317, 165233, 1, 1, 1, 5077, 1, 1, 22571, 1, 340897, 1213, 343237, 1, 23039, 13337, 1, 1877, 70061, 35149, 9043, 176933, 355057, 1, 1, 179321, 1, 16411, 5573, 2423, 364657, 182933, 3307, 2833, 1, 1, 371941, 186581, 2269, 37561, 376837, 1, 19963, 38053, 1, 10079, 2687, 1567, 1, 3527, 1, 1933, 391717, 13099, 1, 197741, 132247, 1, 1699, 1, 36527, 10607, 2543, 1, 4283, 1, 409441, 15797, 1, 1, 414577, 6301, 32089, 8369, 27983, 6791, 10301, 70607, 2297, 1, 1, 214433, 39107, 1, 86561, 1, 1, 218381, 2137, 1, 1, 3299, 147799, 1, 89213, 74567, 448741, 1619, 1, 2383, 1949, 1, 24043, 45817, 1, 4903, 1, 77267, 92993, 46633, 1, 18041, 42767, 15727, 1, 1, 158647, 5821, 5039, 1, 1, 1, 1, 1, 1, 1, 44531, 245621, 32843, 1, 495457, 82811, 38329, 1, 3037, 251261, 6379, 1, 1, 50821, 8941, 8243, 512497, 1, 1747, 1, 1, 259841, 1, 17419, 1, 262733, 1, 52837, 21193, 88547, 2549, 5683, 1, 1, 538597, 90011, 541537, 4177, 36299, 272981, 547441, 8317, 1, 1, 1, 21341, 1, 3719, 111869, 14759, 14419, 281921, 1, 3779, 15361, 25903, 1, 1, 8837, 95987, 5953, 2113, 38699, 1, 583537, 97511, 53327, 1, 2069, 295601, 592741, 1, 23833, 1, 18149, 300233, 46309, 1, 1, 303341, 202747, 304901, 122273, 20431, 47269, 1, 205879, 3259, 11287, 1, 32839, 1, 1, 62869, 1663, 1987, 57587, 1, 42443, 1, 17293, 106907, 1, 12893, 6949, 323933, 34183, 1973, 4211, 1, 1, 328781, 131837, 22027, 1, 25541, 3761, 66733, 12163, 111767, 14303, 30631, 9007, 5209, 1, 1, 1, 1, 1, 31231, 688741, 115067, 12583, 1, 231799, 11243, 1, 1, 140417, 11351, 21377, 27197, 141761, 2153, 37483, 356933, 238519, 1, 2713, 9239, 722341, 32911, 48383, 14549, 5099, 2971, 1, 1, 1, 1, 3229, 123527, 1, 3919, 248779, 1, 1, 1, 1907, 1, 1, 1, 1, 2309, 20641, 1, 1, 1, 30829, 128747, 59557, 3767, 2729, 1, 1, 6869, 784837, 7151, 1, 4073, 7841, 132287, 1, 6133, 266359, 1, 19577, 1, 1, 404021, 269947, 1, 4397, 1, 43003, 409433, 1913, 1, 4021, 12517, 827941, 11213, 55439, 83341, 1, 139511, 838897, 7643, 56171, 1, 4049, 1, 33997, 4483, 284539, 427733, 1, 2203, 1, 431441, 288247, 3581, 1, 1, 14783, 437033, 291979, 2141, 175937, 1, 67957, 1, 1, 1, 3697, 11447, 1, 1, 1, 1, 82031, 150707, 1, 1, 1, 455933, 1, 1, 1, 14831, 307147, 1, 185057, 1, 84467, 3083, 1, 93493, 187373, 156467, 1, 2789, 1, 1, 948517, 14401, 25741, 5023, 1, 36857, 50539, 160367, 192833, 8783, 1, 13109,

6. Sequence of the polynom (only primes)

37, 5, 3, 19, 59, 13, 11, 41, 67, 31, 79, 53, 97, 101, 241, 47, 139, 233, 401, 173, 997, 379, 257, 227, 131, 761, 107, 1777, 311, 103, 2341, 509, 919, 1433, 229, 641, 151, 137, 127, 1399, 433, 431, 2441, 409, 911, 577, 3041, 673, 3533, 7237, 3881, 2647, 283, 8677, 3019, 1889, 1607, 757, 5021, 683, 10657, 1811, 1129, 5861, 11941, 2027, 2477, 389, 13297, 2753, 7001, 557, 499, 15217, 1597, 16741, 8501, 1151, 1753, 3011, 1667, 1861, 1259, 19441, 4001, 2029, 10433, 21157, 4349, 677, 11321, 353, 23557, 11933, 8059, 1171, 26737, 347, 27397, 1871, 1291, 701, 10039, 15233, 30817, 1039, 839, 977, 16301, 1087, 17033, 883, 5927, 2447, 3709, 3407, 6311, 571, 773, 39841, 739, 821, 1063, 631, 1423, 463, 541, 971, 743, 1409, 9473, 2539, 4957, 4547, 647, 863, 467, 691, 26141, 4057, 8867, 10733, 5413, 18199, 2503, 1867, 1499, 28961, 11681, 59377, 809, 1217, 12269, 937, 2011, 2417, 1277, 569, 599, 33461, 6131, 13697, 1783, 661, 2371, 1303, 2777, 24247, 3331, 2953, 3943, 25339, 617, 78241, 7993, 797, 81637, 8221, 5519, 41681, 587, 14087, 17021, 28759, 4603, 17729, 44621, 29947, 4111, 8387, 787, 31159, 15887, 2593, 48281, 9781, 7669, 1373, 102241, 1319, 947, 34939, 52733, 877, 3559, 4297, 4157, 2879, 22013, 3691, 37579, 1031, 22817, 1723, 58061, 2003, 1801, 119557, 733, 60821, 20507, 24749, 41719, 4243, 25601, 5851, 3319, 26177, 2243, 66533, 1223, 2081, 1193, 1297, 1069, 4507, 14197, 71741, 144241, 29153, 14653, 1327, 4987, 1583, 6871, 50647, 4019, 2791, 77933, 31649, 2039, 1321, 2591, 881, 164677, 11087, 83561, 8839, 2557, 2609, 17041, 5189, 4217, 5791, 34913, 87701, 4519, 2393, 3389, 3181, 18217, 7321, 1613, 4993, 92801, 188197, 31511, 19081, 983, 96281, 193441, 39041, 19609, 15289, 2111, 2143, 67447, 7817, 40829, 1367, 205957, 9403, 69259, 2699, 211441, 106181, 36011, 19727, 14591, 2063, 36947, 1117, 1427, 9133, 114641, 6977, 115601, 1787, 9041, 4327, 39827, 18457, 16127, 7867, 1103, 5231, 4937, 11311, 2287, 255877, 8563, 51581, 129461, 7877, 10037, 1153, 132533, 6823, 26713, 53633, 44867, 270241, 3631, 27337, 1481, 276517, 5297, 28393, 94999, 13003, 287137, 1231, 3541, 5113, 4517, 295777, 9029, 5981, 60029, 50207, 1789, 6113, 3947, 9967, 2819, 20747, 8219, 10111, 3323, 2437, 14503, 3301, 10711, 4373, 108247, 1283, 10939, 329317, 165233, 5077, 22571, 340897, 1213, 343237, 23039, 13337, 1877, 70061, 35149, 9043, 176933, 355057, 179321, 16411, 5573, 2423, 364657, 182933, 3307, 2833, 371941, 186581, 2269, 37561, 376837, 19963, 38053, 10079, 2687, 1567, 3527, 1933, 391717, 13099, 197741, 132247, 1699, 36527, 10607, 2543, 4283, 409441, 15797, 414577, 6301, 32089, 8369, 27983, 6791, 10301, 70607, 2297, 214433, 39107, 86561, 218381, 2137, 3299, 147799, 89213, 74567, 448741, 1619, 2383, 1949, 24043, 45817, 4903, 77267, 92993, 46633, 18041, 42767, 15727, 158647, 5821, 5039, 44531, 245621, 32843, 495457, 82811, 38329, 3037, 251261, 6379, 50821, 8941, 8243, 512497, 1747, 259841, 17419, 262733, 52837, 21193, 88547, 2549, 5683, 538597, 90011, 541537, 4177, 36299, 272981, 547441, 8317, 21341, 3719, 111869, 14759, 14419, 281921, 3779, 15361, 25903, 8837, 95987, 5953, 2113, 38699, 583537, 97511, 53327, 2069, 295601, 592741, 23833, 18149, 300233, 46309, 303341, 202747, 304901, 122273, 20431, 47269, 205879, 3259, 11287, 32839, 62869, 1663, 1987, 57587, 42443, 17293, 106907, 12893, 6949, 323933, 34183, 1973, 4211, 328781, 131837, 22027, 25541, 3761, 66733, 12163, 111767, 14303, 30631, 9007, 5209, 31231, 688741, 115067, 12583, 231799, 11243, 140417, 11351, 21377, 27197, 141761, 2153, 37483, 356933, 238519, 2713, 9239, 722341, 32911, 48383, 14549, 5099, 2971, 3229, 123527, 3919, 248779, 1907, 2309, 20641, 30829, 128747, 59557, 3767, 2729, 6869, 784837, 7151, 4073, 7841, 132287, 6133, 266359, 19577, 404021, 269947, 4397, 43003, 409433, 1913, 4021, 12517, 827941, 11213, 55439, 83341, 139511, 838897, 7643, 56171, 4049, 33997, 4483, 284539, 427733, 2203, 431441, 288247, 3581, 14783, 437033, 291979, 2141, 175937, 67957, 3697, 11447, 82031, 150707, 455933, 14831, 307147, 185057, 84467, 3083, 93493, 187373, 156467, 2789, 948517, 14401, 25741, 5023, 36857, 50539, 160367, 192833, 8783, 13109,

7. Distribution of the primes

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

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.8000000.0000000.0000000.000000
2100449350.4400000.0900000.4400005.5000003.0000007.000000
31.000626625640.6260000.0620000.62600014.2272736.88888916.114286
410.0006.6284466.1820.6628000.0446000.66280010.5878597.19354810.960993
5100.00066.9763.61863.3580.6697600.0361800.66976010.1050098.11210710.248787
61.000.000673.86229.487644.3750.6738620.0294870.67386210.0612468.15008310.170381
710.000.0006.763.987250.2796.513.7080.6763990.0250280.67639910.0376448.48777410.108567
8100.000.00067.844.4432.172.55765.671.8860.6784440.0217260.67844410.0302448.68054010.082105
91.000.000.000680.006.51219.154.498660.852.0140.6800070.0191540.68000710.0230268.81656810.062937
1010.000.000.0006.812.678.720171.447.2786.641.231.4420.6812680.0171450.68126810.0185498.95075810.049499


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
245321.2500000.7500000.5000001.6666671.5000002.000000
387340.8750000.3750000.5000001.4000001.0000002.000000
41611380.6875000.1875000.5000001.5714291.0000002.000000
53212480.3750000.1250000.2500001.0909091.3333331.000000
664278190.4218750.1250000.2968752.2500002.0000002.375000
71286212500.4843750.0937500.3906252.2962961.5000002.631579
8256141221190.5507810.0859380.4648442.2741941.8333332.380000
9512308332750.6015620.0644530.5371092.1843971.5000002.310924
101.024642635790.6269530.0615230.5654302.0844161.9090912.105454
112.0481.3231091.2140.6459960.0532230.5927732.0607481.7301592.096719
124.0962.6782012.4770.6538090.0490720.6047362.0241881.8440372.040362
138.1925.4213815.0400.6617430.0465090.6152342.0242721.8955222.034719
1416.38410.87970810.1710.6640010.0432130.6207892.0068251.8582682.018055
1532.76821.8261.32120.5050.6660770.0403140.6257632.0062511.8658192.016026
1665.53643.7932.47741.3160.6682280.0377960.6304322.0064601.8750952.014923
17131.07287.8104.60883.2020.6699370.0351560.6347812.0051151.8603152.013796
18262.144176.0228.644167.3780.6714710.0329740.6384962.0045781.8758682.011706
19524.288352.77216.246336.5260.6728590.0309870.6418722.0041361.8794542.010575
201.048.576706.62730.825675.8020.6738920.0293970.6444952.0030701.8973902.008172
212.097.1521.414.94858.6071.356.3410.6747000.0279460.6467542.0023971.9012812.007010
224.194.3042.833.066111.4452.721.6210.6754560.0265710.6488852.0022401.9015652.006591
238.388.6085.672.553212.3005.460.2530.6762210.0253080.6509132.0022661.9049762.006250
2416.777.21611.356.500405.75210.950.7480.6769000.0241850.6527152.0020091.9112202.005538
2533.554.43222.735.529777.13521.958.3940.6775720.0231600.6544112.0019841.9152962.005196
2667.108.86445.508.1951.491.82844.016.3670.6781250.0222300.6558952.0016341.9196512.004535
27134.217.72891.088.7622.864.82088.223.9420.6786640.0213450.6573202.0015901.9203422.004344
28268.435.456182.309.8115.512.522176.797.2890.6791570.0205360.6586212.0014521.9242122.003960
29536.870.912364.868.77510.621.703354.247.0720.6796210.0197840.6598372.0013671.9268322.003690
301.073.741.824730.197.67620.492.549709.705.1270.6800500.0190850.6609642.0012611.9293092.003418
312.147.483.6481.461.261.44939.595.0281.421.666.4210.6804530.0184380.6620152.0011861.9321672.003179
324.294.967.2962.924.163.85276.585.7892.847.578.0630.6808350.0178320.6630032.0011231.9342272.002986
338.589.934.5925.851.388.337148.297.7725.703.090.5650.6811910.0172640.6639272.0010471.9363612.002786
3417.179.869.18411.708.632.288287.439.84711.421.192.4410.6815320.0167310.6648012.0010011.9382612.002632


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
122100011
243110111
383110111
4163110111
5324211111
6648613131
7128121014161
825622201101101
951233311161151
101.02463611311301
112.0481091071541531
124.09620119919711021
138.192381379118411951
1416.384708706135913471
1532.7681.3211.319168016391
1665.5362.4772.47511.26211.2131
17131.0724.6084.60612.29312.3131
18262.1448.6448.64214.30514.3371
19524.28816.24616.24418.06018.1841
201.048.57630.82530.823115.347115.4761
212.097.15258.60758.605129.301129.3041
224.194.304111.445111.443155.750155.6931
238.388.608212.300212.2981106.3501105.9481
2416.777.216405.752405.7501202.8781202.8721
2533.554.432777.135777.1331388.8491388.2841
2667.108.8641.491.8281.491.8261746.0121745.8141
27134.217.7282.864.8202.864.81811.432.20611.432.6121
28268.435.4565.512.5225.512.52012.756.12512.756.3951
29536.870.91210.621.70310.621.70115.311.74415.309.9571
301.073.741.82420.492.54920.492.547110.246.045110.246.5021
312.147.483.64839.595.02839.595.026119.798.956119.796.0701
324.294.967.29676.585.78976.585.787138.294.570138.291.2171
338.589.934.592148.297.772148.297.770174.150.882174.146.8881
3417.179.869.184287.439.847287.439.8451143.719.2641143.720.5811


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
384221120
4168531232
5328531232
664197125653
712850203016111310
8256119487131283129
951227511516079596671
101.024579243336145131160143
112.0481.214526688303274317320
124.0962.4771.1201.357609577638653
138.1925.0402.2992.7411.2711.2181.2691.282
1416.38410.1714.6805.4912.5782.4352.5642.594
1532.76820.5059.55610.9495.1595.0025.1945.150
1665.53641.31619.30422.01210.47610.03510.52610.279
17131.07283.20239.16944.03320.91120.54921.18420.558
18262.144167.37878.99488.38442.38141.26442.39641.337
19524.288336.526159.629176.89785.10882.96985.20883.241
201.048.576675.802321.619354.183170.650167.169170.544167.439
212.097.1521.356.341647.688708.653342.399335.583342.565335.794
224.194.3042.721.6211.302.7051.418.916685.868674.372688.105673.276
238.388.6085.460.2532.620.2602.839.9931.377.3011.352.9711.378.5091.351.472
2416.777.21610.950.7485.266.6815.684.0672.762.6492.713.1092.763.7852.711.205
2533.554.43221.958.39410.582.28411.376.1105.540.0815.437.9075.539.7995.440.607
2667.108.86444.016.36721.247.61422.768.75311.104.92710.903.96711.099.41410.908.059
27134.217.72888.223.94242.649.16945.574.77322.250.46421.864.03922.245.72221.863.717
28268.435.456176.797.28985.589.91491.207.37544.571.02643.832.55344.565.31243.828.398
29536.870.912354.247.072171.721.185182.525.88789.274.40187.858.05189.264.64587.849.975
301.073.741.824709.705.127344.455.489365.249.638178.817.216176.066.156178.789.676176.032.079
312.147.483.6481.421.666.421690.749.306730.917.115358.096.263352.776.375358.060.918352.732.865
324.294.967.2962.847.578.0631.384.942.6691.462.635.394717.060.387706.743.254717.039.920706.734.502
338.589.934.5925.703.090.5652.776.397.3722.926.693.1931.435.834.6181.415.720.9051.435.799.6211.415.735.421
3417.179.869.18411.421.192.4415.564.969.9925.856.222.4492.874.799.4082.835.742.0992.874.882.7792.835.768.155


8. Check for existing Integer Sequences by OEIS

Found in Database : 37, 5, 3, 19, 59, 13, 1, 11, 41, 67, 1, 1, 31, 79, 53, 1, 1, 1, 1, 1,
Found in Database : 37, 5, 3, 19, 59, 13, 11, 41, 67, 31, 79, 53, 97, 101, 241, 47, 139, 233,
Found in Database : 3, 5, 11, 13, 19, 31, 37, 41, 47, 53, 59, 67, 79, 97, 101, 103, 107, 127, 131, 137, 139,