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!)
A053964 Numbers k such that k^2 contains only digits {4,7,9}. 1
2, 3, 7, 88, 212, 893, 69242288, 8819171038, 865996535661545126193725357 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Author?, Source(txt)
Zhao Hui Du, C++ source code
FORMULA
a(n) = sqrt(A053965(n)).
PROG
(Python)
from itertools import product
from sympy import integer_nthroot
A053964_list = []
for l in range(1, 21):
for p in product(*['479']*l):
a, b = integer_nthroot(int(''.join(p)), 2)
if b:
A053964_list.append(a) # Chai Wah Wu, Apr 01 2021
CROSSREFS
Cf. A053965.
Sequence in context: A065002 A288800 A247025 * A308730 A062578 A062529
KEYWORD
nonn,base,more
AUTHOR
Patrick De Geest, Mar 15 2000
EXTENSIONS
More terms from C. Ronaldo (aga_new_ac(AT)hotmail.com), Jan 03 2005
a(9) from Zhao Hui Du, Feb 29 2024
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 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)