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!)
A179928 Row sums of A179927, the triangle of centered orthotopic numbers. 3
1, 3, 6, 13, 32, 89, 276, 943, 3514, 14159, 61242, 282633, 1384684, 7170701, 39105992, 223867419, 1341434134, 8392364851, 54696456734 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n)-1 is the sum of the antidiagonal of array A265583 from (n+1,1) to (1,n+1). - Mathew Englander, Apr 11 2021
LINKS
FORMULA
From Mathew Englander, Apr 11 2021: (Start)
a(n) = 1 + Sum_{i = 1..n} (i+1)*i^(n-i).
a(n) = A026898(n) + A026898(n-1) for n > 0. (End)
MAPLE
A179928 := proc(n) local j; add(A179927(n, j), j=0..n) end;
MATHEMATICA
e[0, _] = 1; e[n_, x_] := e[n, x] = x (1 - x) D[e[n - 1, x], x] + e[n - 1, x] (1 + (n - 1) x) // Expand;
h[n_, x_] := e[n, x] (1 + x)/(1 - x)^(n + 1);
T[n_, k_] := SeriesCoefficient[h[n - k, x], {x, 0, k}];
a[n_] := Sum[T[n, k], {k, 0, n}];
Table[a[n], {n, 0, 18}] (* Jean-François Alcover, Jul 11 2019 *)
CROSSREFS
Sequence in context: A162483 A187780 A273974 * A026538 A358454 A361932
KEYWORD
nonn
AUTHOR
Peter Luschny, Aug 02 2010
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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)