OFFSET
1,2
COMMENTS
The sequence is finite. The last term is 200 as the next prime after 200 is 211 and so the first digit of any next term is too small to reach 211. - David A. Corneth, Sep 18 2023
EXAMPLE
a(1) = 1 and 1 + 4 = 5 (prime);
a(2) = 4 and 4 + 9 = 13 (prime);
a(3) = 9 and 9 + 8 = 17 (prime);
a(4) = 8 and 8 + 3 = 11 (prime);
a(5) = 30 and 30 + 1 = 31 (prime); etc.
PROG
(PARI) sequence() = {my(res = List([1]), n = 700, leftover = vector(n, i, 1), proceed = 1); leftover[1] = 0; forprime(p = 2, n, leftover[p] = 0); while(proceed, for(i = 1, n, if(leftover[i] && isprime(res[#res] + digits(i)[1]), listput(res, i); leftover[i] = 0; next(2))); proceed = 0); res} \\ David A. Corneth, Sep 18 2023
CROSSREFS
KEYWORD
nonn,easy,base,fini,full
AUTHOR
Eric Angelini, Sep 18 2023
EXTENSIONS
More terms from David A. Corneth, Sep 18 2023
STATUS
approved