OFFSET
0,2
COMMENTS
Is the sequence bounded?
EXAMPLE
Given a(5)=290: a(6) = 1 + lpf(a(5))^2 = 1 + lpf(290)^2 = 1 + 29^2 = 842.
MAPLE
with(numtheory): a[0]:=1: a[1]:=2: for n from 2 to 20 do b:=factorset(a[n-1]): a[n]:=1+op(nops(b), b)^2: od: seq(a[n], n=0..20); # Emeric Deutsch, Feb 05 2006
MATHEMATICA
NestList[1+FactorInteger[#][[-1, 1]]^2&, 1, 17] (* Harvey P. Dale, Feb 01 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Jul 08 2002
EXTENSIONS
More terms from Emeric Deutsch, Feb 05 2006
a(16) corrected by T. D. Noe, Nov 26 2007
STATUS
approved