A005437 Column of Kempner tableau.
1, 1, 1, 2, 4, 14, 46, 224, 1024, 6320, 36976, 275792, 1965664, 17180144, 144361456, 1446351104, 13997185024, 158116017920, 1731678144256, 21771730437632, 266182076161024, 3686171162253824, 49763143319190016, 752594181757712384, 11118629668610842624
Offset: 0
Keywords
References
- N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
Links
- Alois P. Heinz, Table of n, a(n) for n = 0..485
- Yoann Gelineau, Heesung Shin and Jiang Zeng, Bijections for Entringer families, hal-00472187, 2010.
- Yoann Gelineau, Heesung Shin and Jiang Zeng, Bijections for Entringer families, arXiv:1004.2179 [math.CO], 2010.
- Gérard Viennot, Interprétations combinatoires des nombres d'Euler et de Genocchi, Séminaire de théorie des nombres, 1980/1981, Exp. No. 11, p. 41, Univ. Bordeaux I, Talence, 1982.
Programs
-
Maple
A005437 := proc(n) local S; S := proc(n, k) option remember; if k=0 then `if`(n=0, 1, 0) else S(n, k-1)+S(n-1, n-k) fi end: S(n, iquo(n+1, 2)) end; seq(A005437(i), i=0..24); # Peter Luschny, Jul 09 2012
-
Mathematica
a[n_] := Module[{S}, S[m_, k_] := S[m, k] = If[k == 0, If[m == 0, 1, 0], S[m, k-1] + S[m-1, m-k]]; S[n, Quotient[n+1, 2]]]; Table[a[n], {n, 0, 24}] (* Jean-François Alcover, Nov 12 2018, after Peter Luschny *)
Extensions
More terms from Sean A. Irvine, Jun 25 2016
Offset set to 0 by Peter Luschny, Oct 15 2018
Comments