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
KEYWORD
nonn
AUTHOR
Claudio Meller, Jul 02 2009
EXTENSIONS
More terms from Chai Wah Wu, Dec 22 2016
STATUS
approved