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!)
A241172 Joffe's central differences of 0: A241171(n,n-2). 2
0, 1, 126, 13230, 1580040, 227026800, 39502663200, 8266953895200, 2059096751712000, 603711328396176000, 206176565788633440000, 81229359235705480800000, 36597518579286942076800000, 18708155260191426661632000000, 10773738796571008900177536000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,3
REFERENCES
H. T. Davis, Tables of the Mathematical Functions. Vols. 1 and 2, 2nd ed., 1963, Vol. 3 (with V. J. Fisher), 1962; Principia Press of Trinity Univ., San Antonio, TX, Vol. 2, p. 283.
S. A. Joffe, Calculation of the first thirty-two Eulerian numbers from central differences of zero, Quart. J. Pure Appl. Math. 47 (1914), 103-126.
LINKS
FORMULA
a(n) ~ sqrt(Pi) * 2^n * n^(2*n+5/2) / (36 * exp(2*n)). - Vaclav Kotesovec, Apr 25 2014
MAPLE
T:=proc(n, k) option remember;
if k = 0 or k > n then 0
elif k=1 then 1
else k*(2*k-1)*T(n-1, k-1)+k^2*T(n-1, k); fi;
end;
[seq(T(n, n-2), n=2..30)];
MATHEMATICA
T[n_, k_] /; 1 <= k <= n := T[n, k] = k (2 k - 1) T[n - 1, k - 1] + k^2 T[n - 1, k]; T[_, 1] = 1; T[_, _] = 0;
a[n_] := T[n, n - 2]
Array[a, 15, 2] (* Jean-François Alcover, Jul 03 2019 *)
CROSSREFS
A diagonal of A241171.
Sequence in context: A075919 A278306 A180885 * A255172 A121004 A027491
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Apr 22 2014
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)