Inhaltsverzeichnis

Development of
Algorithmic Constructions

14:01:14
Deutsch
20.Apr 2024

Polynom = x^2-238x-3

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) = 3 = 3
f(1) = 15 = 3*5
f(2) = 475 = 5*5*19
f(3) = 177 = 3*59
f(4) = 939 = 3*313
f(5) = 73 = 73
f(6) = 1395 = 3*3*5*31
f(7) = 405 = 3*3*3*3*5
f(8) = 1843 = 19*97
f(9) = 129 = 3*43
f(10) = 2283 = 3*761
f(11) = 625 = 5*5*5*5
f(12) = 2715 = 3*5*181
f(13) = 183 = 3*61
f(14) = 3139 = 43*73
f(15) = 837 = 3*3*3*31
f(16) = 3555 = 3*3*5*79
f(17) = 235 = 5*47
f(18) = 3963 = 3*1321
f(19) = 1041 = 3*347
f(20) = 4363 = 4363
f(21) = 285 = 3*5*19
f(22) = 4755 = 3*5*317
f(23) = 1237 = 1237
f(24) = 5139 = 3*3*571
f(25) = 333 = 3*3*37
f(26) = 5515 = 5*1103
f(27) = 1425 = 3*5*5*19
f(28) = 5883 = 3*37*53
f(29) = 379 = 379
f(30) = 6243 = 3*2081
f(31) = 1605 = 3*5*107
f(32) = 6595 = 5*1319
f(33) = 423 = 3*3*47
f(34) = 6939 = 3*3*3*257
f(35) = 1777 = 1777
f(36) = 7275 = 3*5*5*97
f(37) = 465 = 3*5*31
f(38) = 7603 = 7603
f(39) = 1941 = 3*647
f(40) = 7923 = 3*19*139
f(41) = 505 = 5*101
f(42) = 8235 = 3*3*3*5*61
f(43) = 2097 = 3*3*233
f(44) = 8539 = 8539
f(45) = 543 = 3*181
f(46) = 8835 = 3*5*19*31
f(47) = 2245 = 5*449
f(48) = 9123 = 3*3041
f(49) = 579 = 3*193
f(50) = 9403 = 9403
f(51) = 2385 = 3*3*5*53
f(52) = 9675 = 3*3*5*5*43
f(53) = 613 = 613
f(54) = 9939 = 3*3313
f(55) = 2517 = 3*839
f(56) = 10195 = 5*2039
f(57) = 645 = 3*5*43
f(58) = 10443 = 3*59*59
f(59) = 2641 = 19*139
f(60) = 10683 = 3*3*1187
f(61) = 675 = 3*3*3*5*5
f(62) = 10915 = 5*37*59
f(63) = 2757 = 3*919
f(64) = 11139 = 3*47*79
f(65) = 703 = 19*37
f(66) = 11355 = 3*5*757
f(67) = 2865 = 3*5*191
f(68) = 11563 = 31*373
f(69) = 729 = 3*3*3*3*3*3
f(70) = 11763 = 3*3*1307
f(71) = 2965 = 5*593
f(72) = 11955 = 3*5*797
f(73) = 753 = 3*251
f(74) = 12139 = 61*199
f(75) = 3057 = 3*1019
f(76) = 12315 = 3*5*821
f(77) = 775 = 5*5*31
f(78) = 12483 = 3*3*19*73
f(79) = 3141 = 3*3*349
f(80) = 12643 = 47*269
f(81) = 795 = 3*5*53
f(82) = 12795 = 3*5*853
f(83) = 3217 = 3217
f(84) = 12939 = 3*19*227
f(85) = 813 = 3*271
f(86) = 13075 = 5*5*523
f(87) = 3285 = 3*3*5*73
f(88) = 13203 = 3*3*3*3*163
f(89) = 829 = 829
f(90) = 13323 = 3*4441
f(91) = 3345 = 3*5*223
f(92) = 13435 = 5*2687
f(93) = 843 = 3*281
f(94) = 13539 = 3*4513
f(95) = 3397 = 43*79
f(96) = 13635 = 3*3*3*5*101
f(97) = 855 = 3*3*5*19
f(98) = 13723 = 13723
f(99) = 3441 = 3*31*37
f(100) = 13803 = 3*43*107

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-238x-3

f(0)=3
f(1)=5
f(2)=19
f(3)=59
f(4)=313
f(5)=73
f(6)=31
f(7)=1
f(8)=97
f(9)=43
f(10)=761
f(11)=1
f(12)=181
f(13)=61
f(14)=1
f(15)=1
f(16)=79
f(17)=47
f(18)=1321
f(19)=347
f(20)=4363
f(21)=1
f(22)=317
f(23)=1237
f(24)=571
f(25)=37
f(26)=1103
f(27)=1
f(28)=53
f(29)=379
f(30)=2081
f(31)=107
f(32)=1319
f(33)=1
f(34)=257
f(35)=1777
f(36)=1
f(37)=1
f(38)=7603
f(39)=647
f(40)=139
f(41)=101
f(42)=1
f(43)=233
f(44)=8539
f(45)=1
f(46)=1
f(47)=449
f(48)=3041
f(49)=193
f(50)=9403
f(51)=1
f(52)=1
f(53)=613
f(54)=3313
f(55)=839
f(56)=2039
f(57)=1
f(58)=1
f(59)=1
f(60)=1187
f(61)=1
f(62)=1
f(63)=919
f(64)=1
f(65)=1
f(66)=757
f(67)=191
f(68)=373
f(69)=1
f(70)=1307
f(71)=593
f(72)=797
f(73)=251
f(74)=199
f(75)=1019
f(76)=821
f(77)=1
f(78)=1
f(79)=349
f(80)=269
f(81)=1
f(82)=853
f(83)=3217
f(84)=227
f(85)=271
f(86)=523
f(87)=1
f(88)=163
f(89)=829
f(90)=4441
f(91)=223
f(92)=2687
f(93)=281
f(94)=4513
f(95)=1
f(96)=1
f(97)=1
f(98)=13723
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-238x-3 could be written as f(y)= y^2-14164 with x=y+119

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-119
f'(x)>2x-239 with x > 119

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

3, 5, 19, 59, 313, 73, 31, 1, 97, 43, 761, 1, 181, 61, 1, 1, 79, 47, 1321, 347, 4363, 1, 317, 1237, 571, 37, 1103, 1, 53, 379, 2081, 107, 1319, 1, 257, 1777, 1, 1, 7603, 647, 139, 101, 1, 233, 8539, 1, 1, 449, 3041, 193, 9403, 1, 1, 613, 3313, 839, 2039, 1, 1, 1, 1187, 1, 1, 919, 1, 1, 757, 191, 373, 1, 1307, 593, 797, 251, 199, 1019, 821, 1, 1, 349, 269, 1, 853, 3217, 227, 271, 523, 1, 163, 829, 4441, 223, 2687, 281, 4513, 1, 1, 1, 13723, 1, 1, 173, 1, 1, 263, 1, 311, 701, 151, 293, 14083, 1, 941, 883, 1571, 131, 149, 1, 4721, 3541, 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, 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, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 487, 1, 1, 1, 2477, 1, 1, 1, 1, 1, 1, 1, 307, 1, 1, 1, 5717, 1, 419, 1, 2287, 1, 1489, 1, 1, 521, 2879, 1, 1, 1, 1, 2543, 1, 1, 11117, 953, 3919, 1, 827, 1061, 353, 1, 1, 1, 4799, 1, 15077, 1, 1051, 1, 1, 467, 3433, 1, 1, 1, 6199, 1, 773, 547, 743, 1277, 1, 1, 21557, 457, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2153, 26237, 1, 601, 6863, 1, 1, 5737, 1, 9839, 1871, 3373, 1, 1, 659, 10687, 8123, 439, 1, 33797, 1, 3853, 1, 2371, 3001, 1, 769, 1, 1, 4253, 1, 2063, 661, 1, 1, 13687, 3461, 1, 1, 1, 10859, 14639, 1, 1, 1, 15287, 2897, 1, 1, 47837, 1, 1, 2467, 3323, 1049, 1, 1427, 1153, 1, 569, 1, 683, 1, 1, 13883, 6229, 1, 1, 1, 1021, 3671, 19759, 997, 12073, 1, 6829, 1, 1, 1, 1721, 1, 21599, 1, 1, 1847, 67061, 1409, 4547, 1, 1, 1, 1, 1, 1, 4517, 1, 6121, 1, 1, 809, 18959, 1, 1, 1, 6521, 1, 4967, 1, 1, 1, 1, 9173, 4159, 1, 1759, 85061, 1, 1151, 1087, 9733, 1, 1, 1, 6011, 1, 709, 1, 18553, 1, 10453, 1, 31799, 1601, 1, 2029, 32687, 24683, 1, 1, 5303, 1, 34039, 1, 6899, 8681, 5519, 733, 787, 5347, 35879, 1, 109037, 1, 1, 6947, 1381, 1, 1, 1, 38239, 28859, 1249, 1, 1, 1, 13229, 7487, 1607, 1, 121997, 2557, 1, 6211, 2777, 1, 126461, 10601, 1, 1609, 43159, 10853, 1297, 1, 1, 1, 44687, 1, 1, 2273, 1, 1, 15413, 1, 28057, 2939, 47287, 1877, 1, 1, 145037, 4051, 5431, 1, 9883, 12421, 149861, 1, 10099, 1523, 1, 1069, 1, 2593, 10427, 1, 1, 13241, 6389, 1, 1, 40559, 2861, 1, 1063, 1, 55487, 10457, 1, 1, 1, 3557, 1217, 8623, 2311, 1, 175061, 1, 3929, 2221, 1123, 1, 180317, 1, 1, 1, 1, 1283, 1, 3109, 1453, 1, 63079, 3169, 2011, 1, 2381, 1, 12979, 1, 10343, 16453, 1787, 1, 1483, 1, 202061, 4229, 2719, 10243, 1, 1, 2141, 1, 4657, 1, 70487, 1, 1, 1, 983, 54059, 24133, 1, 1753, 18341, 2377, 13877, 14867, 3733, 991, 1, 1327, 1, 15259, 4789, 230861, 1, 1, 1, 1, 6551, 1, 1, 15923, 1, 80287, 5039, 1567, 1, 1, 1, 1, 4133, 49801, 5209, 1579, 1, 1, 1, 255197, 1, 1, 3229, 17291, 21701, 5563, 1823, 5857, 1, 1, 5557, 267797, 4481, 1, 16937, 1, 1, 1, 1, 92119, 1613, 1, 1, 1, 2609, 1, 17747, 1, 1, 287237, 6007, 96479, 1, 6481, 1, 293861, 1, 19739, 1, 99439, 24953, 300557, 1, 2243, 75983, 1667, 6379, 1, 1, 3329, 19421, 11551, 1, 3307, 6569, 2851, 1, 1, 1, 321077, 8951, 35933, 4057, 1, 27241, 328061, 1, 22027, 1, 36973, 1, 335117, 1, 1, 1, 113287, 1, 68449, 1, 1, 2789, 115679, 1451, 1487, 29221, 6173, 22067, 7873, 1, 1, 7457, 6301, 1, 24107, 7559, 2411, 1, 1, 4597, 2617, 30853, 1, 1553, 1, 4937, 1, 1, 75793, 6337, 1259, 1, 4129, 6421, 15461, 2693, 1, 97583, 26107, 1637, 394157, 1, 1, 1, 1, 3709, 401861, 1, 1, 20287, 1, 1, 1, 1, 9161, 25847, 2267, 1, 83497, 1, 1, 105359, 1, 1, 85081, 1, 1471, 1, 5743, 1, 10079, 3019, 1, 21871, 29251, 1, 441461, 36901, 29611, 5569, 1, 12451, 23663, 1879, 1, 1, 151687, 1, 1, 2551, 1, 28871, 154439, 1549, 1, 9739, 1, 117563, 1, 1, 474437, 2087, 159079, 1, 32003, 1, 482861, 1, 1, 4871, 162839, 1, 491357, 1, 1, 30977, 55229, 1, 19997, 2089, 8821, 3407, 168559, 2113, 2749, 1, 1, 32057, 1, 8597, 517277, 1, 1, 26083, 1, 3643, 6659, 43961, 35267, 1, 177319, 44453, 1709, 1, 11953, 1, 180287, 11299, 108769, 1, 182279, 1, 1, 1, 110569, 11549, 1, 139343, 1, 1, 561917, 1, 62773, 1, 1993, 1531, 9679, 1, 1, 1, 1, 4019, 7949, 9697, 38891, 1, 1, 2579, 1933, 1, 1, 2803, 198599, 1, 23957, 1, 1987, 1, 4483, 3371, 608357, 1, 4337, 6131, 1, 1, 1, 17207, 1, 1, 1, 52153, 33023, 2621, 42043, 1, 70429, 1, 2711, 2129, 3499, 1, 214519, 10753, 129361, 1, 72229, 1, 1, 2729, 656597, 2887, 219959, 8269, 14737, 1, 666461, 1, 44651, 1, 224359, 14057, 1, 3767, 1, 1, 3119, 1, 1, 1, 12101, 172859, 1, 1, 139297, 1, 2953, 1, 1, 1, 1, 4919, 78893, 1873, 47563, 1, 716861, 1, 1, 1, 1, 2239, 727157, 3037, 1, 1, 244687, 15329, 29501, 1, 1, 1, 1, 12437, 1, 15619, 2341, 188303, 1, 1, 1, 63353,

6. Sequence of the polynom (only primes)

3, 5, 19, 59, 313, 73, 31, 97, 43, 761, 181, 61, 79, 47, 1321, 347, 4363, 317, 1237, 571, 37, 1103, 53, 379, 2081, 107, 1319, 257, 1777, 7603, 647, 139, 101, 233, 8539, 449, 3041, 193, 9403, 613, 3313, 839, 2039, 1187, 919, 757, 191, 373, 1307, 593, 797, 251, 199, 1019, 821, 349, 269, 853, 3217, 227, 271, 523, 163, 829, 4441, 223, 2687, 281, 4513, 13723, 173, 263, 311, 701, 151, 293, 14083, 941, 883, 1571, 131, 149, 4721, 3541, 487, 2477, 307, 5717, 419, 2287, 1489, 521, 2879, 2543, 11117, 953, 3919, 827, 1061, 353, 4799, 15077, 1051, 467, 3433, 6199, 773, 547, 743, 1277, 21557, 457, 2153, 26237, 601, 6863, 5737, 9839, 1871, 3373, 659, 10687, 8123, 439, 33797, 3853, 2371, 3001, 769, 4253, 2063, 661, 13687, 3461, 10859, 14639, 15287, 2897, 47837, 2467, 3323, 1049, 1427, 1153, 569, 683, 13883, 6229, 1021, 3671, 19759, 997, 12073, 6829, 1721, 21599, 1847, 67061, 1409, 4547, 4517, 6121, 809, 18959, 6521, 4967, 9173, 4159, 1759, 85061, 1151, 1087, 9733, 6011, 709, 18553, 10453, 31799, 1601, 2029, 32687, 24683, 5303, 34039, 6899, 8681, 5519, 733, 787, 5347, 35879, 109037, 6947, 1381, 38239, 28859, 1249, 13229, 7487, 1607, 121997, 2557, 6211, 2777, 126461, 10601, 1609, 43159, 10853, 1297, 44687, 2273, 15413, 28057, 2939, 47287, 1877, 145037, 4051, 5431, 9883, 12421, 149861, 10099, 1523, 1069, 2593, 10427, 13241, 6389, 40559, 2861, 1063, 55487, 10457, 3557, 1217, 8623, 2311, 175061, 3929, 2221, 1123, 180317, 1283, 3109, 1453, 63079, 3169, 2011, 2381, 12979, 10343, 16453, 1787, 1483, 202061, 4229, 2719, 10243, 2141, 4657, 70487, 983, 54059, 24133, 1753, 18341, 2377, 13877, 14867, 3733, 991, 1327, 15259, 4789, 230861, 6551, 15923, 80287, 5039, 1567, 4133, 49801, 5209, 1579, 255197, 3229, 17291, 21701, 5563, 1823, 5857, 5557, 267797, 4481, 16937, 92119, 1613, 2609, 17747, 287237, 6007, 96479, 6481, 293861, 19739, 99439, 24953, 300557, 2243, 75983, 1667, 6379, 3329, 19421, 11551, 3307, 6569, 2851, 321077, 8951, 35933, 4057, 27241, 328061, 22027, 36973, 335117, 113287, 68449, 2789, 115679, 1451, 1487, 29221, 6173, 22067, 7873, 7457, 6301, 24107, 7559, 2411, 4597, 2617, 30853, 1553, 4937, 75793, 6337, 1259, 4129, 6421, 15461, 2693, 97583, 26107, 1637, 394157, 3709, 401861, 20287, 9161, 25847, 2267, 83497, 105359, 85081, 1471, 5743, 10079, 3019, 21871, 29251, 441461, 36901, 29611, 5569, 12451, 23663, 1879, 151687, 2551, 28871, 154439, 1549, 9739, 117563, 474437, 2087, 159079, 32003, 482861, 4871, 162839, 491357, 30977, 55229, 19997, 2089, 8821, 3407, 168559, 2113, 2749, 32057, 8597, 517277, 26083, 3643, 6659, 43961, 35267, 177319, 44453, 1709, 11953, 180287, 11299, 108769, 182279, 110569, 11549, 139343, 561917, 62773, 1993, 1531, 9679, 4019, 7949, 9697, 38891, 2579, 1933, 2803, 198599, 23957, 1987, 4483, 3371, 608357, 4337, 6131, 17207, 52153, 33023, 2621, 42043, 70429, 2711, 2129, 3499, 214519, 10753, 129361, 72229, 2729, 656597, 2887, 219959, 8269, 14737, 666461, 44651, 224359, 14057, 3767, 3119, 12101, 172859, 139297, 2953, 4919, 78893, 1873, 47563, 716861, 2239, 727157, 3037, 244687, 15329, 29501, 12437, 15619, 2341, 188303, 63353,

7. Distribution of the primes

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

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)
11010281.0000000.2000000.8000000.0000000.0000000.000000
21006713540.6700000.1300000.5400006.7000006.5000006.750000
31.000457913660.4570000.0910000.3660006.8208967.0000006.777778
410.0005.8586575.2010.5858000.0657000.52010012.8183807.21978014.210382
5100.00062.1735.00157.1720.6217300.0500100.57172010.6133497.61187210.992501
61.000.000635.85540.703595.1520.6358550.0407030.59515210.2271898.13897210.409851
710.000.0006.444.841342.9846.101.8570.6444840.0342980.61018610.1357098.42650410.252603
8100.000.00065.087.3912.955.41762.131.9740.6508740.0295540.62132010.0991468.61677810.182470
91.000.000.000655.729.95525.965.818629.764.1370.6557300.0259660.62976410.0746098.78583910.135911
1010.000.000.0006.595.730.590231.647.0386.364.083.5520.6595730.0231650.63640810.0586078.92123010.105503


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
388261.0000000.2500000.7500001.6000002.0000001.500000
416132110.8125000.1250000.6875001.6250001.0000001.833333
532255200.7812500.1562500.6250001.9230772.5000001.818182
6644310330.6718750.1562500.5156251.7200002.0000001.650000
71287716610.6015620.1250000.4765621.7906981.6000001.848485
82567817610.3046880.0664060.2382811.0129871.0625001.000000
9512189451440.3691410.0878910.2812502.4230772.6470592.360656
101.024467923750.4560550.0898440.3662112.4709002.0444452.604167
112.0481.0591668930.5170900.0810550.4360352.2676661.8043482.381333
124.0962.2772991.9780.5559080.0729980.4829102.1501421.8012052.215006
138.1924.7735524.2210.5826420.0673830.5152592.0961791.8461542.133974
1416.3849.7991.0018.7980.5980830.0610960.5369872.0530061.8134062.084340
1532.76819.9611.84818.1130.6091610.0563960.5527652.0370451.8461542.058763
1665.53640.5203.43037.0900.6182860.0523380.5659482.0299581.8560612.047701
17131.07281.8246.39375.4310.6242680.0487750.5754932.0193481.8638482.033729
18262.144164.86511.967152.8980.6289100.0456500.5832602.0148741.8718912.026992
19524.288331.75722.604309.1530.6327760.0431140.5896632.0122951.8888612.021956
201.048.576667.06042.495624.5650.6361580.0405260.5956322.0106891.8799772.020246
212.097.1521.340.07680.5081.259.5680.6389980.0383890.6006092.0089291.8945292.016712
224.194.3042.691.350153.0252.538.3250.6416680.0364840.6051842.0083561.9007432.015234
238.388.6085.401.688291.3575.110.3310.6439310.0347320.6091992.0070551.9039832.013269
2416.777.21610.840.330555.28810.285.0420.6461340.0330980.6130362.0068411.9058682.012598
2533.554.43221.746.8691.060.94220.685.9270.6481070.0316190.6164892.0061081.9106162.011263
2667.108.86443.615.0452.031.42541.583.6200.6499150.0302710.6196442.0055781.9147372.010237
27134.217.72887.450.5633.897.45883.553.1050.6515570.0290380.6225192.0050551.9185832.009279
28268.435.456175.316.7287.489.387167.827.3410.6531060.0279000.6252062.0047531.9216082.008631
29536.870.912351.403.32014.409.408336.993.9120.6545400.0268400.6277002.0043911.9239772.007980
301.073.741.824704.228.43927.777.898676.450.5410.6558640.0258700.6299942.0040461.9277612.007308
312.147.483.6481.411.115.17353.604.6291.357.510.5440.6571020.0249620.6321402.0037751.9297582.006814
324.294.967.2962.827.189.000103.591.7222.723.597.2780.6582560.0241190.6341372.0035141.9325142.006318
338.589.934.5925.663.718.241200.408.0395.463.310.2020.6593440.0233310.6360132.0033041.9345952.005917
3417.179.869.18411.344.974.775388.130.29710.956.844.4780.6603640.0225920.6377722.0030971.9367002.005532
3534.359.738.36822.722.906.028752.426.07621.970.479.9520.6613240.0218980.6394252.0029051.9385912.005183
3668.719.476.73645.508.095.4341.460.097.86644.047.997.5680.6622300.0212470.6409832.0027411.9405202.004872


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
382101100
4162101100
5325401310
66410902620
7128161503940
8256171513950
9512451529415197
101.0249215768204816
112.0481661515014339227
124.09629915283236016551
138.192552155364310730795
1416.3841.0011598575200540186
1532.7681.848151.832137369992350
1665.5363.430153.4142416511.869669
17131.0726.393156.3774571.1983.5051.233
18262.14411.9671511.9518352.2936.5232.316
19524.28822.6041522.5881.5584.37712.3674.302
201.048.57642.4951542.4792.8508.21623.2618.168
212.097.15280.5081580.4925.34415.55844.02715.579
224.194.304153.02515153.00910.10029.65583.86429.406
238.388.608291.35715291.34119.19656.338159.82356.000
2416.777.216555.28815555.27236.793107.103304.831106.561
2533.554.4321.060.942151.060.92669.825204.133583.264203.720
2667.108.8642.031.425152.031.409133.689390.3211.117.287390.128
27134.217.7283.897.458153.897.442256.141747.5472.145.559748.211
28268.435.4567.489.387157.489.371491.3081.435.8724.125.4241.436.783
29536.870.91214.409.4081514.409.392944.2742.760.6037.944.0752.760.456
301.073.741.82427.777.8981527.777.8821.816.4395.317.70015.326.5735.317.186
312.147.483.64853.604.6291553.604.6133.500.37810.252.30429.594.97010.256.977
324.294.967.296103.591.72215103.591.7066.752.57219.800.50657.229.56919.809.075
338.589.934.592200.408.03915200.408.02313.045.74338.282.115110.782.20438.297.977
3417.179.869.184388.130.29715388.130.28125.233.63374.095.676214.676.14774.124.841
3534.359.738.368752.426.07615752.426.06048.865.205143.575.661416.388.059143.597.151
3668.719.476.7361.460.097.866151.460.097.85094.718.670278.477.071808.404.829278.497.296


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
122110110
244221210
386422211
41611833332
5322010105645
66433141911859
712861243716141516
825661243716141516
9512144657940253445
101.024375193182958592103
112.048893461432224198206265
124.0961.9781.015963495450444589
138.1924.2212.1782.0431.0349799891.219
1416.3848.7984.5654.2332.2042.0572.0652.472
1532.76818.1139.3388.7754.4904.2764.3644.983
1665.53637.09019.14117.9499.1868.8498.95410.101
17131.07275.43138.80336.62818.62318.17518.17820.455
18262.144152.89878.45274.44638.04236.71436.83441.308
19524.288309.153158.295150.85876.96374.29474.81583.081
201.048.576624.565319.522305.043155.502150.457151.826166.780
212.097.1521.259.568643.637615.931313.313304.250306.426335.579
224.194.3042.538.3251.295.5341.242.791632.351613.691618.695673.588
238.388.6085.110.3312.603.6372.506.6941.273.9121.236.7161.247.7861.351.917
2416.777.21610.285.0425.234.7785.050.2642.564.9572.493.0722.513.1322.713.881
2533.554.43220.685.92710.517.31810.168.6095.156.5805.023.5945.061.1615.444.592
2667.108.86441.583.62021.128.39920.455.22110.365.27910.113.66310.183.55710.921.121
27134.217.72883.553.10542.422.96441.130.14120.830.40620.347.81120.480.52121.894.367
28268.435.456167.827.34185.158.39482.668.94741.849.56640.913.20641.165.65243.898.917
29536.870.912336.993.912170.895.163166.098.74984.033.84282.234.52582.728.58187.996.964
301.073.741.824676.450.541342.839.305333.611.236168.695.066165.229.696166.186.932176.338.847
312.147.483.6481.357.510.544687.637.256669.873.288338.565.443331.883.405333.717.869353.343.827
324.294.967.2962.723.597.2781.378.924.5141.344.672.764679.324.312666.426.352669.938.693707.907.921
338.589.934.5925.463.310.2022.764.763.4312.698.546.7711.362.764.4321.337.812.3641.344.618.0131.418.115.393
3417.179.869.18410.956.844.4785.542.558.0415.414.286.4372.733.259.3742.684.883.2622.698.096.0932.840.605.749
3534.359.738.36821.970.479.95211.109.438.52110.861.041.4315.481.065.8495.387.172.3205.412.916.0355.689.325.748
3668.719.476.73644.047.997.56822.264.693.12121.783.304.44710.989.464.02010.807.270.43910.857.321.76411.393.941.345


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 5, 19, 59, 313, 73, 31, 1, 97, 43, 761, 1, 181, 61, 1, 1, 79, 47, 1321, 347,
Found in Database : 3, 5, 19, 59, 313, 73, 31, 97, 43, 761, 181, 61, 79, 47, 1321, 347, 4363, 317, 1237, 571, 37, 1103, 53, 379, 2081, 107, 1319, 257, 1777, 7603, 647,
Found in Database : 3, 5, 19, 31, 37, 43, 47, 53, 59, 61, 73, 79, 97, 101, 107, 131, 139, 149,