OFFSET
0,23
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000
FORMULA
G.f.: 1/product(1-x^(5+6j),j=0..infinity). - Emeric Deutsch, Apr 14 2006
a(n) ~ Gamma(5/6) * exp(Pi*sqrt(n)/3) / (4 * sqrt(3) * Pi^(1/6) * n^(11/12)) * (1 - (55/(24*Pi) + Pi/144) / sqrt(n)). - Vaclav Kotesovec, Feb 27 2015, extended Jan 24 2017
a(n) = (1/n)*Sum_{k=1..n} A284104(k)*a(n-k), a(0) = 1. - Seiichi Manyama, Mar 20 2017
Euler transform of period 6 sequence [ 0, 0, 0, 0, 1, 0, ...]. - Kevin T. Acres, Apr 28 2018
EXAMPLE
a(40)=4 since 40 = 35+5 = 29+11 = 23+17 = 5+5+5+5+5+5+5+5.
MAPLE
g:=1/product(1-x^(5+6*j), j=0..20): gser:=series(g, x=0, 92): seq(coeff(gser, x, n), n=0..89); # Emeric Deutsch, Apr 14 2006
MATHEMATICA
nmax=100; CoefficientList[Series[Product[1/(1-x^(6*k+5)), {k, 0, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Feb 27 2015 *)
Table[Count[IntegerPartitions[n], _?(Union[Mod[#, 6]]=={5}&)], {n, 0, 90}] (* Harvey P. Dale, Mar 08 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Erich Friedman, Aug 07 2005
EXTENSIONS
Changed offset to 0 and added a(0)=1 by Vaclav Kotesovec, Feb 27 2015
STATUS
approved