(Translated by https://www.hiragana.jp/)
A230406 - OEIS
login
A230406
a(n) = A034968(A219666(n)); after zero, the differences between successive nodes in the infinite trunk of the factorial beanstalk (A219666).
8
0, 1, 1, 3, 2, 3, 2, 5, 6, 2, 3, 2, 5, 5, 6, 2, 4, 5, 6, 7, 4, 5, 6, 7, 5, 5, 7, 10, 2, 3, 2, 5, 5, 6, 2, 4, 5, 6, 7, 4, 5, 6, 7, 5, 5, 6, 9, 8, 7, 10, 2, 4, 5, 6, 7, 4, 5, 6, 7, 5, 5, 6, 8, 6, 8, 8, 7, 10, 11, 4, 5, 6, 7, 5, 5, 6, 8, 6, 8, 8, 7, 10, 12, 10, 11
OFFSET
0,4
COMMENTS
Also the first differences of A219666, shifted once right and prepended with zero.
This sequence relates to the factorial base representation (A007623) in the same way as A213712 relates to the binary system.
LINKS
FORMULA
a(n) = A034968(A219666(n)).
a(0) = 0, and for n>=1, a(n) = A219666(n) - A219666(n-1).
a(A226061(n)) = A000217(n-1) for all n.
PROG
(Scheme)
(define (A230406 n) (A034968 (A219666 n)))
;; Alternative definition:
(define (A230406 n) (if (zero? n) n (- (A219666 n) (A219666 (- n 1)))))
CROSSREFS
Cf. also A230418, A230410.
Sequence in context: A112924 A267148 A367682 * A362688 A214254 A370903
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 09 2013
STATUS
approved