A383691 Square numbers with distinct digits from 1-9 that have an initial string of two or more digits forming a square number.
169, 256, 361, 3249, 16384, 18496, 36481, 81796, 237169, 729316, 2537649, 3481956, 5184729, 36517849, 81432576, 254817369, 361874529, 529874361
Offset: 1
Examples
169 is a term, because 169 and 16 are both squares, and each digit of 169 is unique. 18496 is a term, because 18496 and 1849 are both squares, and each digit of 18496 is unique.
Programs
-
Mathematica
dd=Select[Range[11,25000]^2,IntegerLength[#]==CountDistinct[IntegerDigits[#]]&&ContainsNone[IntegerDigits[#],{0}]&];f[n_]:=AnyTrue[Table[FromDigits[Take[IntegerDigits[n],i]],{i,2,IntegerLength[n]-1}]^(1/2),IntegerQ];Select[dd,f[#]&] (* James C. McMahon, May 07 2025 *)
Comments