Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #9 Apr 10 2021 20:27:38
%S 1,1,2,3,5,8,16,43,106,280,721,21316,109280,429033,2233210,8775424,
%T 4085769598,34540431364,292365761174,1857930879920,14355615174465090,
%U 98433733136538817,1349004838730110732,18490450644358531784,221781946674143587555,26361819178249287412512739
%N a(n) = F(n)_F(n) where F() = Fibonacci numbers A000045.
%C See A122618 for notation.
%H Alois P. Heinz, <a href="/A122630/b122630.txt">Table of n, a(n) for n = 1..150</a>
%p F:= n-> (<<0|1>, <1|1>>^n)[1,2]:
%p a:= n-> (b-> (l-> add(l[i]*b^(i-1), i=1..nops(l)))(convert(b, base, 10)))(F(n)):
%p seq(a(n), n=1..35); # _Alois P. Heinz_, Apr 10 2021
%Y Cf. A000045, A122618.
%K nonn,base
%O 1,3
%A _N. J. A. Sloane_, Sep 21 2006