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!)
A160990 Number of partitions of n where every part appears at least 20 times. 5
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 4, 2, 4, 4, 5, 4, 7, 5, 7, 7, 8, 7, 10, 8, 10, 10, 11, 10, 13, 11, 15, 14, 15, 15, 19, 16, 19, 19, 21, 20, 23, 21, 25, 24, 25, 25, 29, 26, 29, 29, 34, 31, 35, 33, 38, 38, 39, 38, 44 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,41
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..10000 (terms n = 1..1000 from R. H. Hardin)
FORMULA
a(n) ~ sqrt(Pi^2 + 6*c) * exp(sqrt((2*Pi^2/3 + 4*c)*n)) / (4*sqrt(3)*Pi*n), where c = Integral_{0..infinity} log(1 - exp(-x) + exp(-20*x)) dx = -1.354168532835449099374593344112387373408094711414623392193... . - Vaclav Kotesovec, Jan 05 2016
MAPLE
b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
b(n, i-1)+add(b(n-i*j, i-1), j=20..n/i)))
end:
a:= n-> b(n$2):
seq(a(n), n=0..108); # Alois P. Heinz, Feb 06 2024
MATHEMATICA
nmax = 100; Rest[CoefficientList[Series[Product[1 + x^(20*k)/(1-x^k), {k, 1, nmax}], {x, 0, nmax}], x]] (* Vaclav Kotesovec, Nov 28 2015 *)
CROSSREFS
Sequence in context: A167966 A348998 A167967 * A347516 A322357 A160989
KEYWORD
nonn
AUTHOR
R. H. Hardin, Jun 01 2009
EXTENSIONS
a(0)=1 prepended by Alois P. Heinz, Feb 06 2024
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 25 11:21 EDT 2024. Contains 371967 sequences. (Running on oeis4.)