The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
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 (list; graph; refs; listen; history; text; internal format)
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

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 May 13 18:22 EDT 2024. Contains 372522 sequences. (Running on oeis4.)