OFFSET
1,1
EXAMPLE
Smallest 2-digit prime is 11, largest 1-digit prime is 7, so 11 - 7 = 4 is a term; since there is no 0-digit prime, 4 is a(1).
MATHEMATICA
Block[{s = ToExpression /@ Map[StringSplit, Drop[Import["https://oeis.org/A038804/b038804.txt", "Data"], 4]][[All, -1]]}, Union@ FoldList[Max, s]] (* Michael De Vlieger, Mar 14 2020, using b-file at A038804 *)
PROG
(PARI) d=0; for(k=1, 500, my(t=10^k, dd=nextprime(t)-precprime(t)); if(dd>d, print1(dd, ", "); d=dd)) \\ Hugo Pfoertner, Mar 01 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Jan 28 2020
EXTENSIONS
a(37)-a(42) from Giovanni Resta, Mar 15 2020
STATUS
approved