OFFSET
0,3
COMMENTS
Cilleruelo and Luca prove that a(n) > log log n, for almost all n.
By computation, a(n) > log n, at least up to n = 2500. In fact, a(n) > n if n > 39, at least up to n = 2500; see A192885. - Jonathan Sondow, Aug 16 2011
LINKS
Giovanni Resta, Table of n, a(n) for n = 0..10000 (first 1001 terms from T. D. Noe)
J. Cilleruelo and F. Luca, On the largest prime factor of the partition function of n.
Eric Weisstein's World of Mathematics, Greatest Prime Factor.
Eric Weisstein's World of Mathematics, Partition Function.
Wikipedia, Partition function.
EXAMPLE
A000041(110) = 607163746 = 2*7*4049*10711, therefore a(110)=10711. - Reinhard Zumkeller, Aug 23 2003
MATHEMATICA
Table[First[Last[FactorInteger[PartitionsP[n]]]], {n, 0, 100}] (* Jonathan Sondow, Aug 16 2011 *)
PROG
(PARI) for(n=2, 75, print1(vecmax(component(factor(polcoeff(1/eta(x), n, x)), 1)), ", "))
(PARI) a(n)=local(v); if(n<2, n>=0, v=factor(polcoeff(1/eta(x+x*O(x^n)), n))~[1, ]; v[ #v])
(PARI) a(n)=if(n<2, 1, factor(numbpart(n))[1, 1]) \\ Charles R Greathouse IV, May 29 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Jun 16 2002
EXTENSIONS
Corrected by T. D. Noe, Nov 15 2006
Edited by N. J. A. Sloane, Oct 27 2008 at the suggestion of R. J. Mathar
a(0) = 1 added by N. J. A. Sloane, Sep 13 2009
STATUS
approved