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!)
A123491 Diagonal sums of number triangle A123490. 2
1, 2, 5, 10, 22, 48, 112, 274, 715, 1982, 5837, 18180, 59644, 205296, 739032, 2775180, 10846965, 44039754, 185391469, 807776198, 3637193474, 16900721824, 80939650552, 399061251246, 2023408865983, 10540656630118 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{k=0..floor(n/2)} ((k+2)^(n-2k)+k)/(k+1).
MATHEMATICA
Table[Sum[((k + 2)^(n - 2 k) + k)/(k + 1), {k, 0, Floor[n/2]}], {n, 0, 50}] (* G. C. Greubel, Oct 14 2017 *)
PROG
(PARI) for(n=0, 25, print1(sum(k=0, floor(n/2), ((k + 2)^(n - 2 k) + k)/(k + 1)), ", ")) \\ G. C. Greubel, Oct 14 2017
CROSSREFS
Cf. A123490.
Sequence in context: A320650 A018109 A341020 * A329185 A232163 A166300
KEYWORD
easy,nonn
AUTHOR
Paul Barry, Oct 01 2006
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.)