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

A265370
a(0) = 0; for n >= 1, a(n) = A070939(A078510(n)).
2
0, 1, 1, 1, 1, 1, 1, 1, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 10, 10, 10, 10, 10, 10, 10, 10, 11, 11, 11, 11, 11, 11, 11, 11, 12, 12, 12, 12, 12, 12, 12, 12, 12, 13, 13, 13, 13, 13, 13, 13, 13, 13, 13, 14, 14
OFFSET
0,9
COMMENTS
Number of significant bits in the binary representation of n-th Spironacci number, A078510(n).
LINKS
FORMULA
a(0) = 0; for n >= 1, a(n) = A070939(A078510(n)).
PROG
(define (A265370 n) (if (zero? n) n (A070939 (A078510 n))))
CROSSREFS
Cf. also A020909.
Sequence in context: A029837 A070939 A113473 * A356895 A238407 A196050
KEYWORD
nonn
AUTHOR
Antti Karttunen, Dec 16 2015
STATUS
approved