OFFSET
1,2
COMMENTS
The sequence is infinite because F(2n)^2 = A049684(n) has Fibonacci (or Zeckendorf) representation (1000)^(n-1) 1.
LINKS
Giovanni Resta, Table of n, a(n) for n = 1..60
EXAMPLE
38 is in the sequence because 38^2 = 1444 has Fibonacci representation 101000101000101, which is a palindrome.
MAPLE
for n from 1 do
zeck := A014417(n^2) ;
if isA002113(zeck) then
printf("%d, \n", n);
end if;
end do: # R. J. Mathar, Jun 16 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Jeffrey Shallit, Jun 07 2017
EXTENSIONS
a(35)-a(39) from Alois P. Heinz, Jun 14 2018
a(40) from Giovanni Resta, Jun 15 2018
STATUS
approved