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

A265331
One-based row index to A265345.
6
1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 7, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 6, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 7, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 5, 1, 2, 1, 3, 1, 2, 1, 4, 1, 2, 1, 3, 1, 2, 1, 4
OFFSET
1,2
LINKS
FORMULA
a(n) = A001511(A263273(n)).
a(2n+1) = 1, a(2n) = 1 + a(A265352(n)).
PROG
(Scheme)
(definec (A265331 n) (if (odd? n) 1 (+ 1 (A265331 (A265352 (/ n 2))))))
CROSSREFS
One more than A265330.
Cf. A265911 (corresponding other index).
Differs from A001511 for the first time at n=32, where a(32) = 7, while A001511(32) = 6.
Sequence in context: A317954 A164677 A001511 * A347705 A244569 A266928
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Dec 18 2015
STATUS
approved