login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A157034
Shorthand for A157033, the smallest prime with 2^n digits.
4
1, 1, 9, 19, 37, 33, 121, 283, 37, 241, 3259, 2823, 67017, 13989, 9523, 34281, 159007
OFFSET
0,3
FORMULA
a(n) = A157033(n) - 10^(2^n - 1).
MAPLE
a:= n-> (t-> nextprime(t)-t)(10^(2^n-1)):
seq(a(n), n=0..10); # Alois P. Heinz, Mar 02 2022
MATHEMATICA
f[n_] := NextPrime[ 10^(2^n-1)] - 10^(2^n-1); Table[ f@n, {n, 0, 12}] (* Robert G. Wilson v, Mar 17 2009 *)
PROG
(Python)
from sympy import nextprime
def A157034(n): return 1 if n == 0 else nextprime(10**(2**n-1))-10**(2**n-1) # Chai Wah Wu, Apr 16 2021
CROSSREFS
KEYWORD
nonn,base,more
AUTHOR
Lekraj Beedassy, Feb 22 2009
EXTENSIONS
a(8)-a(12) from Robert G. Wilson v, Mar 17 2009
a(13)-a(14) from Ray Chandler, Mar 22 2009
a(15) from Jinyuan Wang, Feb 24 2022
a(16) from Michael S. Branicky, Jun 18 2024
STATUS
approved