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!)
A280241 Expansion of Product_{k>=1} 1/(1 - x^(k!!)). 1
1, 1, 2, 3, 4, 5, 7, 8, 11, 13, 16, 19, 23, 26, 31, 36, 42, 48, 56, 63, 72, 81, 91, 102, 115, 127, 142, 157, 173, 190, 210, 229, 252, 275, 300, 326, 355, 383, 416, 449, 485, 522, 563, 603, 648, 694, 743, 794, 851, 906, 968, 1031, 1097, 1166, 1241, 1315, 1398, 1481, 1569, 1660, 1758, 1855, 1962 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Number of partitions of n into double factorials parts (0!! not allowed).
LINKS
M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, arXiv:math/0205301 [math.CO], 2002; Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to arXiv version]
M. Bernstein and N. J. A. Sloane, Some canonical sequences of integers, Linear Alg. Applications, 226-228 (1995), 57-72; erratum 320 (2000), 210. [Link to Lin. Alg. Applic. version together with omitted figures]
FORMULA
G.f.: Product_{k>=1} 1/(1 - x^(k!!)).
EXAMPLE
a(5) = 5 because we have [3, 2], [3, 1, 1], [2, 2, 1], [2, 1, 1, 1] and [1, 1, 1, 1, 1].
MATHEMATICA
CoefficientList[Series[Product[1/(1 - x^k!!), {k, 1, 10}], {x, 0, 66}], x]
PROG
(PARI) doublefactorial(n) = prod(j=0, (n-1)\2, n - 2*j );
my(x='x+O('x^70)); Vec( prod(k=1, 10, 1/(1-x^doublefactorial(k))) ) \\ G. C. Greubel, Aug 07 2019
(Magma)
DoubleFactorial:=func< n | (&*[n..2 by -2]) >;
R<x>:=PowerSeriesRing(Integers(), 70); Coefficients(R!( (&*[1/(1-x^DoubleFactorial(k)) :k in [1..10]]) )); // G. C. Greubel, Aug 07 2019
(Sage)
from sympy import factorial2
( product(1/(1-x^factorial2(k)) for k in (1..10)) ).series(x, 70).coefficients(x, sparse=False) # G. C. Greubel, Aug 07 2019
CROSSREFS
Sequence in context: A020902 A008751 A029002 * A031121 A080655 A367358
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 29 2016
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 19 08:08 EDT 2024. Contains 371782 sequences. (Running on oeis4.)