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!)
A129333 Fourth column of PE^4. 14
0, 0, 0, 1, 16, 200, 2320, 26460, 303968, 3557904, 42676320, 526076100, 6673368240, 87148818328, 1171554274800, 16206294360620, 230561544221120, 3371256518888480, 50628767109223872, 780358333403627796 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Base matrix is in A011971; second power is in A078937; third power is in A078938; fourth power is in A078939.
LINKS
FORMULA
PE=exp(matpascal(5))/exp(1); A = PE^4; a(n)= A[ n,4 ] with exact integer arithmetic: PE=exp(matpascal(5)-matid(6)); A = PE^4; a(n)=A[ n,4]
MAPLE
A056857 := proc(n, c) combinat[bell](n-1-c)*binomial(n-1, c) ; end: A078937 := proc(n, c) add( A056857(n, k)*A056857(k+1, c), k=0..n) ; end: A078938 := proc(n, c) add( A078937(n, k)*A056857(k+1, c), k=0..n) ; end: A078939 := proc(n, c) add( A078938(n, k)*A056857(k+1, c), k=0..n) ; end: A129333 := proc(n) A078939(n+1, 3) ; end: seq(A129333(n), n=0..25) ; # R. J. Mathar, May 30 2008
MATHEMATICA
A056857[n_, c_] := If[n <= c, 0, BellB[n - 1 - c] Binomial[n - 1, c]];
A078937[n_, c_] := Sum[A056857[n, k] A056857[k + 1, c], {k, 0, n}];
A078938[n_, c_] := Sum[A078937[n, k] A056857[k + 1, c], {k, 0, n}];
A078939[n_, c_] := Sum[A078938[n, k] A056857[k + 1, c], {k, 0, n}];
a[n_] := A078939[n + 1, 3];
a /@ Range[0, 19] (* Jean-François Alcover, Mar 24 2020, after R. J. Mathar *)
CROSSREFS
Sequence in context: A257289 A125451 A154348 * A001810 A016165 A282834
KEYWORD
nonn,easy
AUTHOR
Gottfried Helms, Apr 08 2007
EXTENSIONS
More terms from R. J. Mathar, May 30 2008
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 29 10:53 EDT 2024. Contains 372113 sequences. (Running on oeis4.)