login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A269371
Least monotonic left inverse of A179016.
3
0, 1, 1, 2, 3, 3, 3, 4, 5, 5, 5, 6, 6, 6, 6, 7, 8, 8, 8, 9, 9, 9, 9, 10, 10, 10, 11, 11, 11, 11, 11, 12, 13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 16, 16, 16, 16, 17, 17, 17, 18, 18, 18, 18, 19, 19, 19, 19, 20, 20, 20, 20, 20, 20, 21, 22, 22, 22, 23, 23, 23, 23, 24, 24, 24, 25, 25, 25, 25, 26, 26, 26, 27, 27, 27, 27, 28
OFFSET
0,4
COMMENTS
a(n) = number of nonzero terms of A179016 <= n.
Partial sums of A213719 from its term A213719(1) onward (A213719(0)=1 not included).
LINKS
FORMULA
a(0) = 0, for n > 0, a(n) = a(n-1) + A213719(n).
a(n) = A213718(n+1) - 1.
Other identities. For all n >= 0:
a(A179016(n)) = n.
PROG
(Scheme, with Antti Karttunen's IntSeq-library, two variants)
(definec (A269371 n) (if (zero? n) n (+ (A213719 n) (A269371 (- n 1)))))
(define A269371 (LEFTINV-LEASTMONO 0 0 A179016))
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Mar 05 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 20 17:28 EDT 2024. Contains 376075 sequences. (Running on oeis4.)