OFFSET
1,2
COMMENTS
A018796 contains initial terms of rows. Subsidiary sequence: There can be a rearrangement of squares in groups so that the n-th group contains n squares beginning with n and not occurring earlier. E.g. the initial term of row 25 would be 256 and not 25.
PROG
(PARI) row(n) = my(list=List(), k=1); while (#list != n, if (strsplit(Str(k^2), Str(n))[1] == "", listput(list, k^2)); k++); Vec(list); \\ Michel Marcus, Feb 08 2023
CROSSREFS
KEYWORD
AUTHOR
Amarnath Murthy, Nov 05 2002
EXTENSIONS
More terms from Michel Marcus, Feb 08 2023
STATUS
approved