login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)