OFFSET
1,2
LINKS
Hans Havermann, Table of n, a(n) for n = 1..15
EXAMPLE
The maximum prime factor of concat(1,2) = 12 is 3, so a(3) = 3;
The maximum prime factor of concat(1,2,3) = 123 is 41, so a(4) = 41; etc.
MAPLE
with(numtheory): P:= proc(q) local a, b, c, k, n; print(1); print(2); a:=12; for n from 3 to q do b:=ifactors(a)[2]; c:=0; for k from 1 to nops(b) do if b[k][1]>c then c:=b[k][1]; fi; od; a:=a*10^(ilog10(c)+1)+c; print(c); od; end: P(10^2);
MATHEMATICA
a = {1, 2}; Do[AppendTo[a, FactorInteger[FromDigits@ Flatten@ Map[IntegerDigits, a]][[-1, 1]]], {10}]; a (* Michael De Vlieger, Jan 10 2017 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Jan 10 2017
EXTENSIONS
a(12)-a(13) from Jon E. Schoenfield, Jan 10 2017
a(14)-a(15) from Hans Havermann, Jan 12 2017
STATUS
approved