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

A275728
a(0) = 0, for n >= 1, a(n) = A275736(n) + a(A257684(n)); a(n) = A048675(A275734(n)).
6
0, 1, 2, 3, 1, 2, 4, 5, 6, 7, 5, 6, 2, 3, 4, 5, 3, 4, 1, 2, 3, 4, 2, 3, 8, 9, 10, 11, 9, 10, 12, 13, 14, 15, 13, 14, 10, 11, 12, 13, 11, 12, 9, 10, 11, 12, 10, 11, 4, 5, 6, 7, 5, 6, 8, 9, 10, 11, 9, 10, 6, 7, 8, 9, 7, 8, 5, 6, 7, 8, 6, 7, 2, 3, 4, 5, 3, 4, 6, 7, 8, 9, 7, 8, 4, 5, 6, 7, 5, 6, 3, 4, 5, 6, 4, 5, 1, 2, 3, 4
OFFSET
0,3
COMMENTS
See graph: pine trees on a snowy mountain. - N. J. A. Sloane, Aug 12 2016
FORMULA
a(0) = 0, for n >= 1, a(n) = A275736(n) + a(A257684(n)).
a(n) = A048675(A275734(n)).
PROG
(Scheme, with memoization-macro definec)
(definec (A275728 n) (if (zero? n) n (+ (A275736 n) (A275728 (A257684 n)))))
(define (A275728 n) (A048675 (A275734 n)))
CROSSREFS
KEYWORD
nonn,base,look
AUTHOR
Antti Karttunen, Aug 09 2016
STATUS
approved