login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A071519
Numbers whose square is a zeroless pandigital number (i.e., use the digits 1 through 9 once).
13
11826, 12363, 12543, 14676, 15681, 15963, 18072, 19023, 19377, 19569, 19629, 20316, 22887, 23019, 23178, 23439, 24237, 24276, 24441, 24807, 25059, 25572, 25941, 26409, 26733, 27129, 27273, 29034, 29106, 30384
OFFSET
1,1
FORMULA
a(n) = sqrt(A036744(n)). - Zak Seidov, Jan 11 2012
MAPLE
lim:=floor(sqrt(987654321)): for n from floor(sqrt(123456789)) to lim do d:=[op(convert(n^2, base, 10))]: pandig:=true: for k from 1 to 9 do if(numboccur(k, d)<>1)then pandig:=false: break: fi: od: if(pandig)then printf("%d, ", n): fi: od: # Nathaniel Johnston, Jun 22 2011
MATHEMATICA
Sqrt[#]&/@Select[FromDigits/@Permutations[Range[9]], IntegerQ[Sqrt[#]]&] (* Harvey P. Dale, Sep 23 2011 *)
Select[Range[11112, 31427, 3], DigitCount[#^2] == {1, 1, 1, 1, 1, 1, 1, 1, 1, 0} &] (* Zak Seidov, Jan 11 2012 *)
PROG
(PARI) A071519 = select( {is_A071519(n, L=[1..9])=vecsort(digits(n^2))==L}, [1e5\9..1e5\3]) \\ M. F. Hasler, Jun 28 2023
CROSSREFS
A subset of A054037.
Sequence in context: A205332 A223296 A110846 * A294661 A347144 A188310
KEYWORD
fini,full,easy,nonn,base
AUTHOR
Lekraj Beedassy, Jun 20 2002
STATUS
approved