login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A230957
Boustrophedon transform of partition numbers A000009.
4
1, 2, 4, 10, 29, 94, 364, 1621, 8255, 47277, 300962, 2107479, 16099922, 133243363, 1187555333, 11340314638, 115511502857, 1250127378307, 14325404633040, 173276880401035, 2206229765086251, 29495119298584886, 413097874985119467, 6048684327982905454
OFFSET
0,2
LINKS
J. Millar, N. J. A. Sloane and N. E. Young, A new operation on sequences: the Boustrophedon transform, J. Combin. Theory, 17A 44-54 1996 (Abstract, pdf, ps).
FORMULA
a(n) = sum(A109449(n,k)*A000009(k): k=0..n).
MATHEMATICA
T[n_, k_] := (n!/k!) SeriesCoefficient[(1 + Sin[x])/Cos[x], {x, 0, n - k}];
a[n_] := Sum[T[n, k] PartitionsQ[k], {k, 0, n}];
Table[a[n], {n, 0, 23}] (* Jean-François Alcover, Jul 23 2019 *)
PROG
(Haskell)
a230957 n = sum $ zipWith (*) (a109449_row n) a000009_list
CROSSREFS
Cf. A000751.
Sequence in context: A010359 A086631 A320903 * A279552 A261041 A047051
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 03 2013
STATUS
approved