login

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”).

A216176
Inner product of the Zeckendorf binary representation of n and its reverse.
3
1, 0, 0, 2, 0, 2, 0, 0, 2, 0, 1, 3, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 0, 2, 1, 3, 1, 0, 2, 0, 2, 4, 0, 2, 0, 0, 2, 0, 2, 0, 0, 2, 0, 0, 2, 0, 2, 0, 2, 4, 0, 2, 0, 0, 2, 0, 0, 2, 0, 2, 0, 1, 3, 1, 1, 3, 0, 2, 0, 0, 2, 2, 4, 2, 0, 2, 0, 2, 4, 0, 2, 0, 1, 3, 1
OFFSET
1,4
COMMENTS
a(n) = sum (A189920(n,k) * A213676(n,k): k = 1..A072649(n));
a(A027941(n)) = n.
LINKS
PROG
(Haskell)
a216176 n = sum $ zipWith (*) zs $ reverse zs
where zs = a189920_row n
CROSSREFS
Cf. A159780.
Sequence in context: A366533 A340683 A221645 * A359007 A128765 A193511
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 10 2013
STATUS
approved