A129613
a(n) is the smallest natural number m such that 2^(2^k) + m is prime for k=0,1,...,n.
Original entry on oeis.org
1, 1, 1, 1, 1, 15, 66747, 475425, 12124167, 14899339905, 8073774344085
Offset: 0
A050474
Solutions to 2*phi(x) = x+1.
Original entry on oeis.org
1, 3, 15, 255, 65535, 83623935, 4294967295, 6992962672132095
Offset: 1
2*phi(15) = 2*8 = 15 + 1, so 15 is a member of the sequence.
- A. H. Beiler, Recreations in the Theory of Numbers, page 92.
A129615
a(n) is the smallest natural number m such that 4^4^k + m is prime for k=0,1,...,n.
Original entry on oeis.org
1, 1, 15, 385, 137593, 106908087
Offset: 0
For k=0,1,...,5 4^4^k + 106908087 are prime and 106908087 is the smallest number with this property so a(5)=106908087.
A233464
a(n) is the smallest natural number m such that 10^10^k + m is prime for k = 0, 1, ...., n.
Original entry on oeis.org
1, 19, 5641, 1289743, 2578966671
Offset: 0
29 (=10^1+19) and 10000000019 (=10^10+19) are primes so a(1)=19.
-
okm(m, n) = {for (k=0, n, if (!isprime(10^10^k + m), return (0)););return (1);}
a(n) = {m = 0; while (!okm(m, n), m++); m;} \\ Michel Marcus, Mar 16 2014
Showing 1-4 of 4 results.
Comments