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!)
A359346 Reversible pandigital square numbers. 2
1234549876609, 9066789454321, 123452587690084, 123454387666009, 123454987660900, 123456987654400, 123458987664100, 123478988652100, 125688987432100, 146678985432100, 445678965432100, 480096785254321, 900666783454321, 906678945432100, 10223418547690084 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
These are perfect squares containing each digit from 0 to 9 at least once and still remain square numbers (not necessarily of the same length) when reversing the digits.
In 1905, inspired by a question about all pandigital square numbers containing each digit from 0 to 9 exactly once (cf. A036745, A156977), the British mathematician Allan Cunningham (1842-1928) asked for reversible and palindromic pandigital square numbers. In his answer, he gives possible solutions, but actually not the least possible numbers he was asking for in his question.
LINKS
Allan Cunningham, Question 15789, The Educational Times, and Journal of the College of Preceptors 58 (1905), nr. 530 (June 1), p. 273; Solution 15789, Ibid., 59 (1906), nr. 537 (Jan. 1), p. 39.
EXAMPLE
Sequence starts with 1111103^2 = 1234549876609 <~> 9066789454321 = 3011111^2, which is the smallest possible such number.
PROG
(Python)
from math import isqrt
from itertools import count, islice
def c(n): return len(set(s:=str(n)))==10 and isqrt(r:=int(s[::-1]))**2==r
def agen(): yield from (k*k for k in count(10**6) if c(k*k))
print(list(islice(agen(), 15))) # Michael S. Branicky, Dec 27 2022
(PARI) isok(k) = if (issquare(k), my(d=digits(k)); (#Set(d) == 10) && issquare(fromdigits(Vecrev(d))); ); \\ Michel Marcus, Dec 31 2022
CROSSREFS
Sequence in context: A271447 A361723 A060088 * A077300 A083407 A287262
KEYWORD
nonn,base
AUTHOR
Martin Renner, Dec 27 2022
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 August 11 13:26 EDT 2024. Contains 375069 sequences. (Running on oeis4.)