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!)
A268837 Antidiagonal sums of array A268715: a(n) = Sum_{k=0..n} A003188(A006068(n)+A006068(n-k)). 3
0, 2, 7, 18, 17, 48, 56, 80, 67, 122, 136, 194, 204, 268, 281, 328, 291, 378, 396, 498, 510, 640, 675, 792, 790, 886, 965, 1098, 1093, 1208, 1248, 1344, 1227, 1378, 1356, 1530, 1538, 1792, 1815, 2016, 2008, 2218, 2339, 2602, 2619, 2892, 2970, 3208, 3150, 3294, 3385, 3586, 3691, 4012, 4174, 4440, 4367, 4554, 4644 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..n} A003188(A006068(n)+A006068(n-k)).
PROG
(Scheme)
(define (A268837 n) (add (lambda (k) (A003188 (+ (A006068 k) (A006068 (- n k))))) 0 n))
(define (add intfun lowlim uplim) (let sumloop ((i lowlim) (res 0)) (cond ((> i uplim) res) (else (sumloop (1+ i) (+ res (intfun i)))))))
CROSSREFS
Cf. also A268720, A268836.
Sequence in context: A174311 A220396 A217253 * A104310 A301325 A001114
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 15 2016
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 September 13 20:16 EDT 2024. Contains 375910 sequences. (Running on oeis4.)