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

A263275
One-based row-index to array A263255.
4
1, 2, 1, 3, 3, 4, 1, 5, 4, 2, 2, 3, 1, 4, 3, 4, 4, 5, 1, 6, 4, 6, 1, 7, 5, 2, 2, 8, 2, 9, 1, 10, 3, 10, 1, 11, 9, 12, 2, 12, 4, 13, 1, 14, 3, 13, 1, 14, 3, 2, 4, 15, 2, 16, 1, 16, 4, 17, 1, 18, 4, 19, 1, 18, 18, 20, 2, 21, 2, 21, 1, 22, 5, 23, 2, 22, 2, 24, 1, 25, 2, 3, 2, 4, 6, 4, 3, 5, 3, 6, 1, 6, 4, 7, 1, 7
OFFSET
0,2
LINKS
FORMULA
If A262693(n) = 1, then a(n) = 1, otherwise a(n) = 1 + a(A049820(n)).
a(n) = 1 + A263254(n).
PROG
(Scheme, two alternative definitions)
(definec (A263275 n) (if (= 1 (A262693 n)) 1 (+ 1 (A263275 (A049820 n)))))
(define (A263275 n) (+ 1 (A263254 n)))
CROSSREFS
One more than A263254.
Cf. also A263274.
Sequence in context: A333627 A304037 A265144 * A308057 A097686 A082666
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 07 2015
STATUS
approved