OFFSET
1,1
COMMENTS
All similar sequences starting with numbers less than 11 become constant after a few terms.
Next initial values for the sequence to behave like this one: 13, 17, 19, 23, 26, 27, 28, 29, ... - Michel Marcus, Jun 14 2013
LINKS
Jon E. Schoenfield, Table of n, a(n) for n = 1..20
PROG
(PARI) lista(nn) = {ia = 11; print1(ia, ", "); for (i=1, nn, ib = lcm(ia, sqrtint(ia)); print1(ib, ", "); ia = ib; ); } \\ Michel Marcus, Jun 14 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
J. Lowell, Jul 02 2010
EXTENSIONS
Extended by Ray Chandler, Jul 07 2010
More terms from Jon E. Schoenfield, Jul 05 2010
b-file corrected by Jon E. Schoenfield, Apr 26 2014 after Alois P. Heinz found that the terms from a(15) onward were incorrect
STATUS
approved