login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A060810
Numbers whose squares have their digits in strictly increasing order.
1
0, 1, 2, 3, 4, 5, 6, 7, 13, 16, 17, 37, 116, 117, 367
OFFSET
1,3
FORMULA
a(n) = sqrt(A122683(n)).
EXAMPLE
117^2 = 13689 and 1 < 3 < 6 < 8 < 9.
MATHEMATICA
Select[Range[0, 400], Min[Differences[IntegerDigits[#^2]]]>0&] (* Harvey P. Dale, Oct 06 2024 *)
CROSSREFS
Cf. A122683.
Sequence in context: A125745 A265124 A032990 * A319723 A271377 A363331
KEYWORD
base,easy,full,nonn,fini
AUTHOR
Erich Friedman, Apr 29 2001
STATUS
approved