The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A151820 a(n) = A162391(n)^2. 2
1, 144, 441, 36864, 86436, 6431296, 6964321, 15233409, 23658496, 28536964, 38962564, 53319204, 62948356, 64368529, 84529636, 94303521, 148011556, 429276961, 515108416, 674129296, 2687074569, 2751317209, 3719170225, 4786702596, 4877206569, 4897760256, 5874762609 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Michael S. Branicky, Table of n, a(n) for n = 1..10000 (terms 1..417 from Chai Wah Wu)
PROG
(Python)
from math import isqrt
def agen(LIMIT): # generator of terms less than LIMIT
fibs = set()
f, g = 1, 2
while f <= LIMIT:
fibs.add("".join(sorted(str(f))))
f, g = g, f+g
r = s = 1
r = s = 1
while s <= LIMIT:
if "".join(sorted(str(s))) in fibs: yield s
r += 1
s = r*r
print(list(agen(10**10))) # Michael S. Branicky, Feb 18 2024
CROSSREFS
Cf. A162391.
Sequence in context: A250787 A188246 A258382 * A322905 A281240 A014770
KEYWORD
nonn
AUTHOR
Claudio Meller, Jul 02 2009
EXTENSIONS
More terms from Chai Wah Wu, Dec 22 2016
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 May 15 08:34 EDT 2024. Contains 372538 sequences. (Running on oeis4.)