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!)
A098698 Main diagonal of array in A098697. 1
1, 4, 64, 1778, 73848, 4188592, 306690520, 27893327856, 3063657097664, 397720778283584, 59997757426314624, 10373545999796847232, 2032368096229682220160, 446879795164524710777856 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Diagonal of Euler-Seidel matrix with start sequence A000248.
LINKS
FORMULA
a(n) = Sum_{k=0..n} C(n, k) * A000248(2n-k).
MATHEMATICA
a248[0] = 1; a248[n_] := Sum[Binomial[n, k]*(n - k)^k, {k, 0, n}];
T[0, n_] := T[0, n] = a248[n]; T[k_, n_] := T[k, n] = T[k - 1, n] + T[k - 1, n + 1];
a[n_] := T[n, n];
Table[a[n], {n, 0, 13}] (* Jean-François Alcover, Nov 08 2017 *)
CROSSREFS
Sequence in context: A263988 A208357 A050636 * A301583 A181398 A326274
KEYWORD
nonn
AUTHOR
Ralf Stephan, Sep 23 2004
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 23 03:30 EDT 2024. Contains 371906 sequences. (Running on oeis4.)