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

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A263260 a(n) = number of nonnegative integers k for which A155043(k) <= n; partial sums of A262507. 8
1, 3, 6, 11, 15, 20, 26, 30, 34, 38, 46, 50, 54, 59, 67, 74, 81, 88, 95, 103, 108, 114, 120, 128, 138, 145, 153, 160, 167, 172, 177, 183, 189, 197, 203, 210, 217, 224, 228, 233, 238, 244, 250, 258, 265, 270, 275, 281, 288, 299, 304, 308, 313, 321, 333, 340, 349, 354, 362, 370, 379, 389, 403 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; for n >= 1, a(n) = A262507(n) + a(n-1).
PROG
(Scheme, with memoization-macro definec)
(definec (A263260 n) (if (zero? n) (A262507 n) (+ (A262507 n) (A263260 (- n 1)))))
CROSSREFS
Sequence in context: A368384 A113960 A287075 * A324773 A152682 A059753
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 24 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | 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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)