A176090 Numbers n such that 2(10^n-1)/3 * 10^ceiling(log_10(n+1)) + n is prime.
1, 7, 41, 2429
Offset: 1
Examples
The numbers 1 and 7 are terms because 61 and 66666667 are prime.
Crossrefs
Programs
-
PARI
is(n)=ispseudoprime(2*(10^n-1)/3 * 10^logint(10*n,10) + n) \\ Charles R Greathouse IV, May 22 2017
Comments