OFFSET
1,1
COMMENTS
There are only 7 primes in the first 1000 terms of this sequence. The first 6 primes are 13, 47, 829, 2213, 77711, and 174111811681183993. The 7th prime, a(920), has 214 digits. - Harvey P. Dale, Aug 04 2014
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
a(4): sum of first 2 digits of a(3)=11, append 11 to 47 and get 4711, drop first digit and get 711.
MATHEMATICA
ld[n_]:=Module[{idn=IntegerDigits[n]}, FromDigits[Rest[Join[ idn, IntegerDigits[ Total[ Take[idn, 2]]]]]]]; NestList[ld, 13, 40] (* Harvey P. Dale, Aug 04 2014 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Bodo Zinser, Mar 22 2004
STATUS
approved