OFFSET
1,2
COMMENTS
There are exactly 610 terms. a(610) = 99066 and 99066^2 = 9814072356. - Rick L. Shepherd, Jul 27 2006
If we count 0, there is one more term, for a total of 611. - T. D. Noe, Jun 21 2013
LINKS
Rick L. Shepherd, Table of n, a(n) for n = 1..610 (full sequence)
MAPLE
lim:=floor(sqrt(9876543210)): A119509:={}: for n from 1 to lim do pandig:=true: d:=convert(n^2, base, 10): for k from 0 to 9 do if(numboccur(k, d)>1)then pandig:=false: break: fi: od: if(pandig)then A119509 := A119509 union {n}: fi: od: op(sort(convert(A119509, list))); # Nathaniel Johnston, Jun 23 2011
MATHEMATICA
Select[Range[1000000], Length[IntegerDigits[ # ^2]] == Length[Union[IntegerDigits[ # ^2]]] &] (* Tanya Khovanova, May 29 2007 *)
Select[Range[10^5], Max[DigitCount[#^2]] <= 1 &] (* T. D. Noe, Aug 02 2011 *)
PROG
(Magma) [n: n in [1..10^5] | #Set(d) eq #d where d is Intseq(n^2)]; // Bruno Berselli, Aug 02 2011
(PARI) is_A119509(n)=#(n=digits(n^2))==#Set(n) \\ M. F. Hasler, Sep 08 2017
(Python)
def ok(n): s = str(n**2); return n > 0 and len(set(s)) == len(s)
afull = [k for k in range(10**5) if ok(k)] # Michael S. Branicky, Nov 27 2022
CROSSREFS
KEYWORD
base,fini,full,nonn
AUTHOR
Tanya Khovanova, Jul 26 2006
EXTENSIONS
More terms from Rick L. Shepherd, Jul 27 2006
STATUS
approved