|
| |
|
|
A022290
|
|
Replace 2^k in binary expansion of n by k-th Fibonacci number.
|
|
8
|
|
|
|
0, 1, 2, 3, 3, 4, 5, 6, 5, 6, 7, 8, 8, 9, 10, 11, 8, 9, 10, 11, 11, 12, 13, 14, 13, 14, 15, 16, 16, 17, 18, 19, 13, 14, 15, 16, 16, 17, 18, 19, 18, 19, 20, 21, 21, 22, 23, 24, 21, 22, 23, 24, 24, 25, 26, 27, 26, 27, 28, 29, 29, 30, 31, 32, 21, 22, 23, 24, 24, 25, 26
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
0,3
|
|
|
LINKS
|
_Reinhard Zumkeller_, Table of n, a(n) for n = 0..10000
|
|
|
FORMULA
|
G.f.: 1/(1-x) * sum[k>=0, F(k+2)*x^2^k/(1+x^2^k)], F(n)=A000045(n).
a(n) = Sum_k>=0 {A030308(n,k)*A000045(k+2)}. - Philippe Deléham, Oct 15 2011
|
|
|
MATHEMATICA
|
Table[Reverse[#].Fibonacci[1 + Range[Length[#]]] &@ IntegerDigits[n, 2], {n, 0, 54}] (* IWABUCHI Yu(u)ki, Aug 01 2012 *)
|
|
|
PROG
|
(Haskell)
a022290 0 = 0
a022290 n = h n 0 $ drop 2 a000045_list where
h 0 y _ = y
h x y (f:fs) = h x' (y + f * r) fs where (x', r) = divMod x 2
-- Reinhard Zumkeller, Oct 03 2012
|
|
|
CROSSREFS
|
Other sequences that are built by replacing 2^k in the binary representation with other numbers: A029931 (naturals), A059590 (factorials), A089625 (primes).
Sequence in context: A203899 A202704 A029931 * A185363 A103827 A094182
Adjacent sequences: A022287 A022288 A022289 * A022291 A022292 A022293
|
|
|
KEYWORD
|
nonn
|
|
|
AUTHOR
|
Marc LeBrun
|
|
|
STATUS
|
approved
|
| |
|
|