This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A050811 #46 Feb 16 2025 08:32:40 %S A050811 2,3,4,6,9,13,18,26,35,48,65,87,115,152,199,258,333,427,545,692,875, %T A050811 1102,1381,1725,2145,2659,3285,4046,4967,6080,7423,9037,10974,13293, %U A050811 16065,19370,23304,27977,33519,40080,47833,56981,67757,80431,95316 %N A050811 Partition numbers rounded to nearest integer given by the Hardy-Ramanujan approximate formula. %C A050811 The mounting error seems to be approximately A035949(n-3), n >= 4. - _Alonso del Arte_, Jul 28 2011 %C A050811 This conjecture is false, for correct approximation see the formula below. - _Vaclav Kotesovec_, Apr 03 2017 %D A050811 John H. Conway and Richard K. Guy, The Book of Numbers, Copernicus Press, NY, 1996, p. 95. %H A050811 Dr. Math, <a href="http://mathforum.org/dr.math/problems/partitions.html">Partitioning the Integers</a> %H A050811 Dr. Math, <a href="http://mathforum.org/dr.math/problems/huckin11.14.98.html">Partitioning an Integer</a> %H A050811 D. Rusin, <a href="http://www.math.niu.edu/~rusin/known-math/95/partitions">Additive Partitions of Number</a> %H A050811 F. Ruskey, <a href="http://combos.org/part">Generate Numerical Partitions</a> %H A050811 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/PartitionFunctionP.html">Partition Function P</a> %H A050811 OEIS Wiki, <a href="/wiki/Partition_function">Partition function</a> %F A050811 a(n) = round(exp(Pi*sqrt(2*n/3))/(4*n*sqrt(3))). - _Alonso del Arte_, May 21 2011 %F A050811 a(n) - A000041(n) ~ (1/Pi + Pi/72) * exp(sqrt(2*n/3)*Pi) / (4*sqrt(2)*n^(3/2)) * (1 - (9 + Pi^2/48)*Pi/((72 + Pi^2)*sqrt(6*n))). - _Vaclav Kotesovec_, Apr 03 2017 %p A050811 A050811:=n->round(exp(Pi*sqrt(2*n/3))/(4*n*sqrt(3))): seq(A050811(n), n=1..70); # _Wesley Ivan Hurt_, Sep 11 2015 %t A050811 f[n_] := Round[ E^(Sqrt[2n/3] Pi)/(4Sqrt[3] n)]; Array[f, 45] (* _Alonso del Arte_, May 21 2011, corrected by _Robert G. Wilson v_, Sep 11 2015 *) %o A050811 (UBASIC) input N:print round(#e^(pi(1)*sqrt(2*N/3))/(4*N*sqrt(3))) %o A050811 (PARI) a(n)=round(exp(Pi*sqrt(2*n/3))/(4*n*sqrt(3))) \\ _Charles R Greathouse IV_, May 01 2012 %Y A050811 Cf. A000041, A035949, A049575, A051143. %K A050811 nonn,easy %O A050811 1,1 %A A050811 _Patrick De Geest_, Oct 15 1999 %E A050811 a(1) = 1 replaced by 2, a(2) = 2 replaced by 3. - _Alonso del Arte_, _D. S. McNeil_, Aug 07 2011