Inhaltsverzeichnis

Development of
Algorithmic Constructions

22:13:16
Deutsch
19.Apr 2024

Polynom = x^2+1

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) = 1 = 1
f(1) = 1 = 1
f(2) = 5 = 5
f(3) = 5 = 5
f(4) = 17 = 17
f(5) = 13 = 13
f(6) = 37 = 37
f(7) = 25 = 5*5
f(8) = 65 = 5*13
f(9) = 41 = 41
f(10) = 101 = 101
f(11) = 61 = 61
f(12) = 145 = 5*29
f(13) = 85 = 5*17
f(14) = 197 = 197
f(15) = 113 = 113
f(16) = 257 = 257
f(17) = 145 = 5*29
f(18) = 325 = 5*5*13
f(19) = 181 = 181
f(20) = 401 = 401
f(21) = 221 = 13*17
f(22) = 485 = 5*97
f(23) = 265 = 5*53
f(24) = 577 = 577
f(25) = 313 = 313
f(26) = 677 = 677
f(27) = 365 = 5*73
f(28) = 785 = 5*157
f(29) = 421 = 421
f(30) = 901 = 17*53
f(31) = 481 = 13*37
f(32) = 1025 = 5*5*41
f(33) = 545 = 5*109
f(34) = 1157 = 13*89
f(35) = 613 = 613
f(36) = 1297 = 1297
f(37) = 685 = 5*137
f(38) = 1445 = 5*17*17
f(39) = 761 = 761
f(40) = 1601 = 1601
f(41) = 841 = 29*29
f(42) = 1765 = 5*353
f(43) = 925 = 5*5*37
f(44) = 1937 = 13*149
f(45) = 1013 = 1013
f(46) = 2117 = 29*73
f(47) = 1105 = 5*13*17
f(48) = 2305 = 5*461
f(49) = 1201 = 1201
f(50) = 2501 = 41*61
f(51) = 1301 = 1301
f(52) = 2705 = 5*541
f(53) = 1405 = 5*281
f(54) = 2917 = 2917
f(55) = 1513 = 17*89
f(56) = 3137 = 3137
f(57) = 1625 = 5*5*5*13
f(58) = 3365 = 5*673
f(59) = 1741 = 1741
f(60) = 3601 = 13*277
f(61) = 1861 = 1861
f(62) = 3845 = 5*769
f(63) = 1985 = 5*397
f(64) = 4097 = 17*241
f(65) = 2113 = 2113
f(66) = 4357 = 4357
f(67) = 2245 = 5*449
f(68) = 4625 = 5*5*5*37
f(69) = 2381 = 2381
f(70) = 4901 = 13*13*29
f(71) = 2521 = 2521
f(72) = 5185 = 5*17*61
f(73) = 2665 = 5*13*41
f(74) = 5477 = 5477
f(75) = 2813 = 29*97
f(76) = 5777 = 53*109
f(77) = 2965 = 5*593
f(78) = 6085 = 5*1217
f(79) = 3121 = 3121
f(80) = 6401 = 37*173
f(81) = 3281 = 17*193
f(82) = 6725 = 5*5*269
f(83) = 3445 = 5*13*53
f(84) = 7057 = 7057
f(85) = 3613 = 3613
f(86) = 7397 = 13*569
f(87) = 3785 = 5*757
f(88) = 7745 = 5*1549
f(89) = 3961 = 17*233
f(90) = 8101 = 8101
f(91) = 4141 = 41*101
f(92) = 8465 = 5*1693
f(93) = 4325 = 5*5*173
f(94) = 8837 = 8837
f(95) = 4513 = 4513
f(96) = 9217 = 13*709
f(97) = 4705 = 5*941
f(98) = 9605 = 5*17*113
f(99) = 4901 = 13*13*29
f(100) = 10001 = 73*137

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+1

f(0)=1
f(1)=1
f(2)=5
f(3)=1
f(4)=17
f(5)=13
f(6)=37
f(7)=1
f(8)=1
f(9)=41
f(10)=101
f(11)=61
f(12)=29
f(13)=1
f(14)=197
f(15)=113
f(16)=257
f(17)=1
f(18)=1
f(19)=181
f(20)=401
f(21)=1
f(22)=97
f(23)=53
f(24)=577
f(25)=313
f(26)=677
f(27)=73
f(28)=157
f(29)=421
f(30)=1
f(31)=1
f(32)=1
f(33)=109
f(34)=89
f(35)=613
f(36)=1297
f(37)=137
f(38)=1
f(39)=761
f(40)=1601
f(41)=1
f(42)=353
f(43)=1
f(44)=149
f(45)=1013
f(46)=1
f(47)=1
f(48)=461
f(49)=1201
f(50)=1
f(51)=1301
f(52)=541
f(53)=281
f(54)=2917
f(55)=1
f(56)=3137
f(57)=1
f(58)=673
f(59)=1741
f(60)=277
f(61)=1861
f(62)=769
f(63)=397
f(64)=241
f(65)=2113
f(66)=4357
f(67)=449
f(68)=1
f(69)=2381
f(70)=1
f(71)=2521
f(72)=1
f(73)=1
f(74)=5477
f(75)=1
f(76)=1
f(77)=593
f(78)=1217
f(79)=3121
f(80)=173
f(81)=193
f(82)=269
f(83)=1
f(84)=7057
f(85)=3613
f(86)=569
f(87)=757
f(88)=1549
f(89)=233
f(90)=8101
f(91)=1
f(92)=1693
f(93)=1
f(94)=8837
f(95)=4513
f(96)=709
f(97)=941
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+1 could be written as f(y)= y^2+1 with x=y+0

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+0
f'(x)>2x-1 with x > 1

4. Infinity of the sequence

The first prime values for the polynom fx)=x^2+1 are
f(0)=1
f(1)=2
f(2)=5
f(3)=1
f(4)=17

Supposing that the sequence f(5)-f(oo)=1

p1=2
p2=5
p3=17

are the first primes

choose a special x1, x2 and x3 for the primes

x1=2
x2=4
x3=5

(Other values are also possible, f(xi) should not be divisible by pi)

With the help of the chinese remainder theorem you could solve the
equitations :

x=0 mod 2  f(0)=1  not divisible by 2
x=4 mod 5  f(4)=17 not divisible by 5
x=5 mod 17 f(5)=26 not divisible by 17

The solution is x=124 mod 170

f(124) is not divisible by the primes 2, 5, 17
f(124)=15377 which is by chance a primes.

By this way you could calculate a special x taking the first primes of the sequence calculated by the algorithm 
and you get as result a special f(x) which is either a prime or consists of primes which are not yet in the sequence.

Therefore the sequence of the reducible primes at least for the primes which appear as divisor of f(x) is infinite.

5. Sequence of the polynom with 1

1, 1, 5, 1, 17, 13, 37, 1, 1, 41, 101, 61, 29, 1, 197, 113, 257, 1, 1, 181, 401, 1, 97, 53, 577, 313, 677, 73, 157, 421, 1, 1, 1, 109, 89, 613, 1297, 137, 1, 761, 1601, 1, 353, 1, 149, 1013, 1, 1, 461, 1201, 1, 1301, 541, 281, 2917, 1, 3137, 1, 673, 1741, 277, 1861, 769, 397, 241, 2113, 4357, 449, 1, 2381, 1, 2521, 1, 1, 5477, 1, 1, 593, 1217, 3121, 173, 193, 269, 1, 7057, 3613, 569, 757, 1549, 233, 8101, 1, 1693, 1, 8837, 4513, 709, 941, 1, 1, 1, 5101, 2081, 1061, 373, 1, 661, 229, 2333, 457, 12101, 1, 1, 1277, 317, 389, 13457, 1, 557, 1, 14401, 7321, 1, 1, 15377, 601, 15877, 1613, 1, 1, 16901, 8581, 1, 1, 17957, 701, 349, 1877, 293, 9661, 1153, 9941, 1, 409, 1, 10513, 21317, 2161, 337, 653, 22501, 877, 4621, 2341, 641, 1, 24337, 1, 4993, 12641, 25601, 997, 1, 2657, 2069, 13613, 1621, 2789, 1129, 14281, 28901, 14621, 1, 1, 1, 15313, 30977, 1, 6337, 433, 32401, 16381, 1, 1, 33857, 1, 1193, 1, 7069, 1, 2777, 1, 1, 1, 617, 19013, 937, 3881, 7841, 19801, 1, 20201, 8161, 1, 41617, 21013, 42437, 857, 509, 21841, 44101, 1, 1, 1, 1117, 797, 1, 1, 1901, 23981, 1669, 24421, 9857, 4973, 50177, 1489, 3929, 5153, 1, 2017, 52901, 26681, 2153, 1, 3221, 521, 55697, 1, 11329, 1, 57601, 1, 1, 1181, 2053, 30013, 829, 6101, 12301, 1069, 62501, 1, 977, 1, 1, 1, 65537, 1321, 13313, 1973, 67601, 34061, 13729, 6917, 69697, 1, 1, 7129, 1, 1, 72901, 36721, 14797, 1, 1, 37813, 4481, 7673, 1, 38921, 78401, 3037, 3181, 8009, 80657, 2389, 1, 8237, 1, 41761, 2273, 3257, 17053, 1, 1, 821, 2137, 8821, 17761, 44701, 90001, 1, 1, 9181, 7109, 1, 93637, 1, 18973, 47741, 5653, 1, 19469, 1, 98597, 49613, 1637, 773, 809, 1, 7877, 51521, 1, 10433, 929, 52813, 106277, 1, 21517, 54121, 8377, 1889, 4409, 853, 1, 56113, 1, 1, 1, 1553, 115601, 1097, 1, 1, 6961, 59513, 9209, 12041, 1, 60901, 122501, 1, 24781, 733, 1109, 1033, 9749, 2549, 25633, 4957, 1, 3833, 26209, 13177, 3581, 2297, 1381, 13469, 5417, 5237, 8053, 68821, 2129, 13913, 1021, 70313, 3821, 1, 1, 71821, 1, 1, 1, 14669, 147457, 5701, 148997, 881, 30109, 2609, 1709, 76441, 1, 3089, 1, 1, 156817, 15761, 2437, 79601, 160001, 1, 32321, 1, 9601, 82013, 164837, 3313, 1, 83641, 1733, 1, 1997, 1, 1697, 86113, 2837, 17389, 1, 2141, 176401, 1, 35617, 1, 13829, 90313, 1049, 18233, 36637, 5413, 184901, 1, 1493, 18749, 14489, 94613, 190097, 1, 1, 1, 193601, 97241, 953, 1, 197137, 99013, 11701, 1, 1, 100801, 1, 101701, 1409, 20521, 3889, 6089, 1, 4177, 41953, 105341, 1, 106261, 42689, 1, 215297, 1481, 217157, 1, 8761, 1009, 220901, 110921, 2621, 1721, 224677, 3049, 1, 1, 45697, 1289, 13553, 3989, 9293, 1, 3209, 1, 18169, 1, 47629, 1, 240101, 1, 48413, 4861, 1, 1213, 246017, 1453, 1, 1, 1, 3061, 3877, 25301, 1, 4397, 15061, 1, 51613, 1, 8969, 1, 1, 26317, 15541, 1, 1, 26729, 10733, 134681, 1, 135721, 54497, 1609, 1, 10601, 1, 27773, 4289, 139921, 1093, 8293, 11321, 28409, 9833, 143113, 287297, 28837, 1, 5009, 1, 11257, 1433, 5897, 295937, 148513, 1237, 29921, 3533, 4073, 2677, 11677, 1, 1, 23609, 1, 309137, 1, 62273, 156241, 1, 4253, 1, 1, 24469, 1, 1, 2473, 1, 161881, 324901, 163021, 65437, 32833, 19381, 165313, 331777, 1, 1, 167621, 1, 168781, 1, 1, 341057, 1249, 9281, 34457, 69149, 1949, 26777, 10273, 2417, 1, 352837, 177013, 3517, 1229, 1933, 1, 2293, 1, 72481, 2797, 3761, 1, 1, 7369, 4349, 185441, 1597, 2557, 1, 1, 1361, 1, 1, 38069, 15277, 14737, 1429, 1, 77377, 1, 9497, 11489, 13513, 39313, 78877, 15217, 5437, 199081, 1, 2357, 401957, 5449, 404497, 40577, 81409, 204161, 2749, 205441, 1, 8269, 414737, 16001, 417317, 1, 1, 210601, 1, 1, 85021, 42641, 427717, 1, 2741, 1, 6661, 1, 1, 218461, 87649, 1, 1, 5393, 8369, 2617, 1373, 223781, 1, 17317, 2441, 45293, 454277, 1, 26881, 45833, 1, 7949, 462401, 17837, 1, 46649, 1, 234613, 470597, 1, 2309, 237361, 476101, 1, 95773, 1, 37049, 241513, 484417, 1, 97441, 244301, 490001, 1, 98561, 1, 495617, 1, 12157, 1, 3457, 6793, 2281, 252761, 1913, 1753, 509797, 255613, 512657, 1, 1, 4877, 39877, 4261, 1, 4021, 1789, 1, 1, 3109, 105997, 6481, 4889, 1, 21433, 4133, 14561, 15889, 41669, 1873, 108929, 273061, 547601, 1, 3797, 1, 32561, 277513, 1, 1, 1, 21577, 562501, 282001, 6653, 56701, 5861, 1, 1, 1, 114913, 22157, 577601, 17033, 8933, 58217, 583697, 5521, 20233, 1, 23593, 17393, 14461, 1, 1, 59753, 3041, 1777, 1, 60373, 7121, 303421, 608401, 304981, 1, 1657, 614657, 1, 36341, 1, 1, 2089, 2221, 312841, 125453, 12577, 2753, 1, 5813, 63521, 1, 319201, 1, 24677, 1, 3793, 10597, 1, 5749, 1, 3529, 1, 1, 1, 7757, 1, 50969, 332113, 665857, 66749, 1, 335381, 1, 337021, 1, 67733, 1801, 6421, 682277, 5261, 137117, 1, 9437, 1, 27689, 69389, 1993, 3917, 1, 1, 140449, 3229, 54277, 353641, 141793, 1, 1, 9649, 42101, 71741, 143821, 4937, 1, 3733, 3541, 1, 42901, 365513, 8233, 1, 5077, 2693, 739601, 370661, 148609, 1, 746497, 6133, 57689, 75169, 30137, 377581, 18461, 1, 152077, 76213, 1, 382813, 59029, 76913, 2909, 29717, 45553, 388081, 1, 77969, 4049, 391613, 4337, 2713, 9277, 1, 792101, 1, 12241, 1, 21601, 4129, 2857, 4733, 161281, 4001, 3361, 405901, 12517, 1, 13397, 1, 820837, 16453, 164893, 413141, 828101, 1, 166349, 83357, 1, 2477, 28933, 84089, 2593, 1, 846401, 424121, 1, 85193, 1, 427813, 14057, 85933, 13249, 431521, 864901, 1, 6949, 87049, 21277, 437113, 876097, 87797, 1, 25933, 30469, 34057, 177473, 3557, 5273, 1, 894917, 89681, 1, 450301, 902501, 452201, 4421, 90821, 70009, 456013, 1, 1, 1, 459841, 921601, 1, 185089, 92737, 2969, 1, 933157, 7193, 1, 16189, 1, 2393, 188957, 5569, 32713, 11593, 13049, 1, 191297, 479221, 73877, 481181, 2269, 7433, 18269, 485113, 972197, 1, 195229, 489061, 57653, 491041, 2029, 1, 3673, 6781, 1, 99401, 6869, 1,

6. Sequence of the polynom (only primes)

5, 17, 13, 37, 41, 101, 61, 29, 197, 113, 257, 181, 401, 97, 53, 577, 313, 677, 73, 157, 421, 109, 89, 613, 1297, 137, 761, 1601, 353, 149, 1013, 461, 1201, 1301, 541, 281, 2917, 3137, 673, 1741, 277, 1861, 769, 397, 241, 2113, 4357, 449, 2381, 2521, 5477, 593, 1217, 3121, 173, 193, 269, 7057, 3613, 569, 757, 1549, 233, 8101, 1693, 8837, 4513, 709, 941, 5101, 2081, 1061, 373, 661, 229, 2333, 457, 12101, 1277, 317, 389, 13457, 557, 14401, 7321, 15377, 601, 15877, 1613, 16901, 8581, 17957, 701, 349, 1877, 293, 9661, 1153, 9941, 409, 10513, 21317, 2161, 337, 653, 22501, 877, 4621, 2341, 641, 24337, 4993, 12641, 25601, 997, 2657, 2069, 13613, 1621, 2789, 1129, 14281, 28901, 14621, 15313, 30977, 6337, 433, 32401, 16381, 33857, 1193, 7069, 2777, 617, 19013, 937, 3881, 7841, 19801, 20201, 8161, 41617, 21013, 42437, 857, 509, 21841, 44101, 1117, 797, 1901, 23981, 1669, 24421, 9857, 4973, 50177, 1489, 3929, 5153, 2017, 52901, 26681, 2153, 3221, 521, 55697, 11329, 57601, 1181, 2053, 30013, 829, 6101, 12301, 1069, 62501, 977, 65537, 1321, 13313, 1973, 67601, 34061, 13729, 6917, 69697, 7129, 72901, 36721, 14797, 37813, 4481, 7673, 38921, 78401, 3037, 3181, 8009, 80657, 2389, 8237, 41761, 2273, 3257, 17053, 821, 2137, 8821, 17761, 44701, 90001, 9181, 7109, 93637, 18973, 47741, 5653, 19469, 98597, 49613, 1637, 773, 809, 7877, 51521, 10433, 929, 52813, 106277, 21517, 54121, 8377, 1889, 4409, 853, 56113, 1553, 115601, 1097, 6961, 59513, 9209, 12041, 60901, 122501, 24781, 733, 1109, 1033, 9749, 2549, 25633, 4957, 3833, 26209, 13177, 3581, 2297, 1381, 13469, 5417, 5237, 8053, 68821, 2129, 13913, 1021, 70313, 3821, 71821, 14669, 147457, 5701, 148997, 881, 30109, 2609, 1709, 76441, 3089, 156817, 15761, 2437, 79601, 160001, 32321, 9601, 82013, 164837, 3313, 83641, 1733, 1997, 1697, 86113, 2837, 17389, 2141, 176401, 35617, 13829, 90313, 1049, 18233, 36637, 5413, 184901, 1493, 18749, 14489, 94613, 190097, 193601, 97241, 953, 197137, 99013, 11701, 100801, 101701, 1409, 20521, 3889, 6089, 4177, 41953, 105341, 106261, 42689, 215297, 1481, 217157, 8761, 1009, 220901, 110921, 2621, 1721, 224677, 3049, 45697, 1289, 13553, 3989, 9293, 3209, 18169, 47629, 240101, 48413, 4861, 1213, 246017, 1453, 3061, 3877, 25301, 4397, 15061, 51613, 8969, 26317, 15541, 26729, 10733, 134681, 135721, 54497, 1609, 10601, 27773, 4289, 139921, 1093, 8293, 11321, 28409, 9833, 143113, 287297, 28837, 5009, 11257, 1433, 5897, 295937, 148513, 1237, 29921, 3533, 4073, 2677, 11677, 23609, 309137, 62273, 156241, 4253, 24469, 2473, 161881, 324901, 163021, 65437, 32833, 19381, 165313, 331777, 167621, 168781, 341057, 1249, 9281, 34457, 69149, 1949, 26777, 10273, 2417, 352837, 177013, 3517, 1229, 1933, 2293, 72481, 2797, 3761, 7369, 4349, 185441, 1597, 2557, 1361, 38069, 15277, 14737, 1429, 77377, 9497, 11489, 13513, 39313, 78877, 15217, 5437, 199081, 2357, 401957, 5449, 404497, 40577, 81409, 204161, 2749, 205441, 8269, 414737, 16001, 417317, 210601, 85021, 42641, 427717, 2741, 6661, 218461, 87649, 5393, 8369, 2617, 1373, 223781, 17317, 2441, 45293, 454277, 26881, 45833, 7949, 462401, 17837, 46649, 234613, 470597, 2309, 237361, 476101, 95773, 37049, 241513, 484417, 97441, 244301, 490001, 98561, 495617, 12157, 3457, 6793, 2281, 252761, 1913, 1753, 509797, 255613, 512657, 4877, 39877, 4261, 4021, 1789, 3109, 105997, 6481, 4889, 21433, 4133, 14561, 15889, 41669, 1873, 108929, 273061, 547601, 3797, 32561, 277513, 21577, 562501, 282001, 6653, 56701, 5861, 114913, 22157, 577601, 17033, 8933, 58217, 583697, 5521, 20233, 23593, 17393, 14461, 59753, 3041, 1777, 60373, 7121, 303421, 608401, 304981, 1657, 614657, 36341, 2089, 2221, 312841, 125453, 12577, 2753, 5813, 63521, 319201, 24677, 3793, 10597, 5749, 3529, 7757, 50969, 332113, 665857, 66749, 335381, 337021, 67733, 1801, 6421, 682277, 5261, 137117, 9437, 27689, 69389, 1993, 3917, 140449, 3229, 54277, 353641, 141793, 9649, 42101, 71741, 143821, 4937, 3733, 3541, 42901, 365513, 8233, 5077, 2693, 739601, 370661, 148609, 746497, 6133, 57689, 75169, 30137, 377581, 18461, 152077, 76213, 382813, 59029, 76913, 2909, 29717, 45553, 388081, 77969, 4049, 391613, 4337, 2713, 9277, 792101, 12241, 21601, 4129, 2857, 4733, 161281, 4001, 3361, 405901, 12517, 13397, 820837, 16453, 164893, 413141, 828101, 166349, 83357, 2477, 28933, 84089, 2593, 846401, 424121, 85193, 427813, 14057, 85933, 13249, 431521, 864901, 6949, 87049, 21277, 437113, 876097, 87797, 25933, 30469, 34057, 177473, 3557, 5273, 894917, 89681, 450301, 902501, 452201, 4421, 90821, 70009, 456013, 459841, 921601, 185089, 92737, 2969, 933157, 7193, 16189, 2393, 188957, 5569, 32713, 11593, 13049, 191297, 479221, 73877, 481181, 2269, 7433, 18269, 485113, 972197, 195229, 489061, 57653, 491041, 2029, 3673, 6781, 99401, 6869,

7. Distribution of the primes

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

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

A B C D E F G H I J K  
10^n x all Primes P(x)=x^2+1 P(x) | x^2+1 C/B D/B E/B C(n) / C(n-1) D(n) / D(n-1) E(n) / E(n-1)  
1 10 7 5 2 0,700000 0,500000 0,200000        
2 100 70 19 51 0,700000 0,190000 0,510000 10,000000 3,800000 25,500000  
3 1.000 720 112 608 0,720000 0,112000 0,608000 10,285714 5,894737 11,921569  
4 10.000 7.102 841 6.261 0,710200 0,084100 0,626100 9,863889 7,508929 10,297697  
5 100.000 70.780 6.656 64.124 0,707800 0,066560 0,641240 9,966207 7,914388 10,241814  
6 1.000.000 704.537 54.110 650.427 0,704537 0,054110 0,650427 9,953899 8,129507 10,143269  
7 10.000.000 7.026.559 456.362 6.570.197 0,702656 0,045636 0,657020 9,973300 8,433968 10,101360  
8 100.000.000 70.122.424 3.954.181 66.168.243 0,701224 0,039542 0,661682 9,979625 8,664571 10,070968  
9 1.000.000.000 700.184.485 34.900.213 665.284.272 0,700184 0,034900 0,665284 9,985172 8,826155 10,054435  
10 10.000.000.000 6.993.568.566 312.357.934 6.681.210.632 0,699357 0,031236 0,668121 9,988180 8,950029 10,042640  
11 100.000.000.000 69.870.544.960 2.826.683.630 67.043.861.330 0,698705 0,028267 0,670439 9,990686 9,049502 10,034688  
12 1.000.000.000.000 698.175.242.376 25.814.570.672 672.360.671.704 0,698175 0,025815 0,672361 9,992412 9,132458 10,028669  


A B C D E F G H I J K  
2^n x all Primes P(x)=x^2+1 P(x) | x^2+1 C/B D/B E/B C(n) / C(n-1) D(n) / D(n-1) E(n) / E(n-1)  
                       
1 2 2 2 0 1,000000 1,000000 0,000000        
2 4 3 3 0 0,750000 0,750000 0,000000 1,500000 1,500000    
3 8 5 4 1 0,625000 0,500000 0,125000 1,666667 1,333333    
4 16 12 7 5 0,750000 0,437500 0,312500 2,400000 1,750000 5,000000  
5 32 22 10 12 0,687500 0,312500 0,375000 1,833333 1,428571 2,400000  
6 64 46 14 32 0,718750 0,218750 0,500000 2,090909 1,400000 2,666667  
7 128 90 24 66 0,703125 0,187500 0,515625 1,956522 1,714286 2,062500  
8 256 181 43 138 0,707031 0,167969 0,539063 2,011111 1,791667 2,090909  
9 512 364 70 294 0,710938 0,136719 0,574219 2,011050 1,627907 2,130435  
10 1.024 736 114 622 0,718750 0,111328 0,607422 2,021978 1,628571 2,115646  
11 2.048 1.459 212 1.247 0,712402 0,103516 0,608887 1,982337 1,859649 2,004823  
12 4.096 2.920 393 2.527 0,712891 0,095947 0,616943 2,001371 1,853774 2,026464  
13 8.192 5.810 713 5.097 0,709229 0,087036 0,622192 1,989726 1,814249 2,017016  
14 16.384 11.620 1.301 10.319 0,709229 0,079407 0,629822 2,000000 1,824684 2,024524  
15 32.768 23.198 2.459 20.739 0,707947 0,075043 0,632904 1,996386 1,890085 2,009788  
16 65.536 46.339 4.615 41.724 0,707077 0,070419 0,636658 1,997543 1,876779 2,011862  
17 131.072 92.654 8.418 84.236 0,706894 0,064224 0,642670 1,999482 1,824052 2,018886  
18 262.144 185.106 15.867 169.239 0,706123 0,060528 0,645596 1,997820 1,884890 2,009105  
19 524.288 369.794 29.843 339.951 0,705326 0,056921 0,648405 1,997742 1,880822 2,008704  
20 1.048.576 738.766 56.534 682.232 0,704542 0,053915 0,650627 1,997777 1,894381 2,006854  
21 2.097.152 1.476.544 106.787 1.369.757 0,704071 0,050920 0,653151 1,998663 1,888899 2,007758  
22 4.194.304 2.949.935 203.025 2.746.910 0,703319 0,048405 0,654914 1,997865 1,901215 2,005399  
23 8.388.608 5.894.833 387.308 5.507.525 0,702719 0,046171 0,656548 1,998293 1,907686 2,004989  
24 16.777.216 11.782.897 739.671 11.043.226 0,702315 0,044088 0,658228 1,998852 1,909775 2,005116  
25 33.554.432 23.550.908 1.416.635 22.134.273 0,701872 0,042219 0,659653 1,998737 1,915223 2,004330  
26 67.108.864 47.074.786 2.716.922 44.357.864 0,701469 0,040485 0,660984 1,998852 1,917870 2,004035  
27 134.217.728 94.099.962 5.218.926 88.881.036 0,701099 0,038884 0,662215 1,998946 1,920897 2,003727  
28 268.435.456 188.106.701 10.044.585 178.062.116 0,700752 0,037419 0,663333 1,999009 1,924646 2,003376  
29 536.870.912 376.049.307 19.352.155 356.697.152 0,700446 0,036046 0,664400 1,999128 1,926626 2,003218  
30 1.073.741.824 751.784.745 37.339.024 714.445.721 0,700154 0,034775 0,665379 1,999165 1,929450 2,002948  
31 2.147.483.648 1.503.000.381 72.139.395 1.430.860.986 0,699889 0,033593 0,666297 1,999243 1,932011 2,002757  
32 4.294.967.296 3.004.917.702 139.535.723 2.865.381.979 0,699637 0,032488 0,667149 1,999279 1,934251 2,002558  
33 8.589.934.592 6.007.850.623 270.187.320 5.737.663.303 0,699406 0,031454 0,667952 1,999339 1,936331 2,002408  
34 17.179.869.184 12.012.007.361 523.695.185 11.488.312.176 0,699191 0,030483 0,668708 1,999385 1,938267 2,002263  
35 34.359.738.368 24.017.148.553 1.016.029.276 23.001.119.277 0,698991 0,029570 0,669421 1,999428 1,940116 2,002132  
36 68.719.476.736 48.021.305.927 1.973.029.796 46.048.276.131 0,698802 0,028711 0,670091 1,999459 1,941903 2,002002  
37 137.438.953.472 96.018.463.670 3.834.641.365 92.183.822.305 0,698626 0,027901 0,670726 1,999497 1,943529 2,001895  
38 274.877.906.944 191.991.204.563 7.458.662.439 184.532.542.124 0,698460 0,027134 0,671325 1,999524 1,945074 2,001789  
39 549.755.813.888 383.896.376.530 14.518.923.631 369.377.452.899 0,698303 0,026410 0,671894 1,999552 1,946585 2,001693  
40 1.099.511.627.776 767.630.202.986 28.282.415.900 739.347.787.086 0,698156 0,025723 0,672433 1,999577 1,947969 2,001605  
41 2.199.023.255.552 1.534.954.071.943 55.130.064.461 1.479.824.007.482 0,698016 0,025070 0,672946 1,999601 1,949270 2,001526


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
243021010
384121020
4167152040
53210274050
66414497060
712824914110120
8256431527210210
9512702445360330
101.0241144172600530
112.0482127014110901020
124.09639312726519401980
138.19271323148136003520
1416.3841.30143686465106490
1532.7682.4598431.6151.24401.2140
1665.5364.6151.5473.0672.33002.2840
17131.0728.4182.8545.5634.24604.1710
18262.14415.8675.32310.5437.93807.9280
19524.28829.84310.01319.82914.955014.8870
201.048.57656.53418.83937.69428.171028.3620
212.097.152106.78735.39271.39453.338053.4480
224.194.304203.02567.653135.371101.1190101.9050
238.388.608387.308128.939258.368193.2350194.0720
2416.777.216739.671246.669493.001369.2730370.3970
2533.554.4321.416.635472.296944.338708.1670708.4670
2667.108.8642.716.922905.5071.811.4141.358.36901.358.5520
27134.217.7285.218.9261.739.9163.479.0092.608.73602.610.1890
28268.435.45610.044.5853.348.6446.695.9405.023.04305.021.5410
29536.870.91219.352.1556.451.98812.900.1669.675.25309.676.9010
301.073.741.82437.339.02412.447.47124.891.55218.667.885018.671.1380
312.147.483.64872.139.39524.049.06348.090.33136.067.539036.071.8550
324.294.967.296139.535.72346.514.86293.020.86069.768.975069.766.7470
338.589.934.592270.187.32090.058.651180.128.668135.092.2840135.095.0350
3417.179.869.184523.695.184174.558.447349.136.736261.845.6380261.849.5450
3534.359.738.3681.016.029.274338.653.157677.376.116508.003.5360508.025.7370
3668.719.476.7361.973.029.782657.637.4591.315.392.322986.505.2530986.524.5280


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
240000000
381100010
4165232030
53212845070
664321913140180
7128663630280380
82561387365630750
951229414614814101530
101.02462232829431103110
112.0481.24766458363106160
124.0962.5271.3111.2161.27101.2560
138.1925.0972.6462.4512.54802.5490
1416.38410.3195.3414.9785.16105.1580
1532.76820.73910.7699.97010.366010.3730
1665.53641.72421.57920.14520.764020.9600
17131.07284.23643.45740.77942.123042.1130
18262.144169.23986.95582.28484.619084.6200
19524.288339.951174.611165.340169.8210170.1300
201.048.576682.232350.420331.812341.1260341.1060
212.097.1521.369.757702.725667.032684.6940685.0630
224.194.3042.746.9101.408.1461.338.7641.373.50401.373.4060
238.388.6085.507.5252.817.9102.689.6152.753.63502.753.8900
2416.777.21611.043.2265.645.0235.398.2035.520.15705.523.0690
2533.554.43222.134.27311.305.69010.828.58311.067.464011.066.8090
2667.108.86444.357.86422.637.75021.720.11422.179.283022.178.5810
27134.217.72888.881.03645.319.44943.561.58744.442.896044.438.1400
28268.435.456178.062.11690.718.10587.344.01189.028.573089.033.5430
29536.870.912356.697.152181.617.979175.079.173178.349.4040178.347.7480
301.073.741.824714.445.721363.493.073350.952.648357.229.4330357.216.2880
312.147.483.6481.430.860.986727.560.774703.300.212715.429.4920715.431.4940
324.294.967.2962.865.381.9791.456.149.2361.409.232.7431.432.663.67101.432.718.3080
338.589.934.5925.737.663.3032.914.225.6142.823.437.6892.868.806.51602.868.856.7870
3417.179.869.18411.488.312.1755.832.117.9655.656.194.2105.744.168.11905.744.144.0560
3534.359.738.36823.001.119.27211.671.204.53711.329.914.73511.500.598.218011.500.521.0540
3668.719.476.73646.048.276.10123.355.396.02622.692.880.07523.024.208.905023.024.067.1960


8. Check for existing Integer Sequences by OEIS

Found in Database : 1, 1, 5, 1, 17, 13, 37, 1, 1, 41, 101, 61, 29, 1, 197, 113, 257, 1, 1, 181,
Found in Database : 5, 17, 13, 37, 41, 101, 61, 29, 197, 113, 257, 181, 401, 97, 53, 577, 313, 677, 73, 157, 421, 109, 89, 613, 1297, 137, 761,
Found in Database : 5, 13, 17, 29, 37, 41, 53, 61, 73, 89, 97, 101, 109, 113, 137, 149,