cp's OEIS Frontend

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.

Showing 1-2 of 2 results.

A138880 Sum of all parts of all partitions of n that do not contain 1 as a part.

Original entry on oeis.org

0, 2, 3, 8, 10, 24, 28, 56, 72, 120, 154, 252, 312, 476, 615, 880, 1122, 1584, 1995, 2740, 3465, 4620, 5819, 7680, 9575, 12428, 15498, 19824, 24563, 31170, 38378, 48224, 59202, 73678, 90055, 111384, 135420, 166364, 201630, 246120, 297045, 360822
Offset: 1

Views

Author

Omar E. Pol, Apr 30 2008

Keywords

Comments

Sum of all parts > 1 of the last section of the set of partitions of n.
Row sums of triangle A182710. Also row sums of other similar triangles as A138136 and A182711.
Partial sums give A194552. - Omar E. Pol, Sep 23 2013

Crossrefs

Programs

  • Mathematica
    Table[Total[Flatten[Select[IntegerPartitions[n],FreeQ[#,1]&]]],{n,50}] (* Harvey P. Dale, May 24 2015 *)
    a[n_] := (PartitionsP[n] - PartitionsP[n-1])*n; Table[a[n], {n, 1, 50}] (* Jean-François Alcover, Oct 07 2015 *)

Formula

a(n) = A002865(n)*n = (A000041(n) - A000041(n-1))*n = A138879(n) - A000041(n-1).
a(n) ~ Pi^2/6*A000070(n-2). - Peter Bala, Dec 23 2013
G.f.: x*f'(x), where f(x) = Product_{k>=2} 1/(1 - x^k). - Ilya Gutkovskiy, Apr 13 2017
a(n) ~ Pi * exp(sqrt(2*n/3)*Pi) / (12*sqrt(2*n)) * (1 - (3*sqrt(3/2)/Pi + 13*Pi/(24*sqrt(6)))/sqrt(n) + (217*Pi^2/6912 + 9/(2*Pi^2) + 13/8)/n). - Vaclav Kotesovec, Jul 06 2019

Extensions

Better definition from Omar E. Pol, Sep 23 2013

A182710 Triangle read by rows in which row n lists the parts >= 2 of the last section of the set of partitions of n, in the order produced by the shell model of partitions of A138121, with a(1)=0.

Original entry on oeis.org

0, 2, 3, 4, 2, 2, 5, 3, 2, 6, 3, 3, 4, 2, 2, 2, 2, 7, 4, 3, 5, 2, 3, 2, 2, 8, 4, 4, 5, 3, 6, 2, 3, 3, 2, 4, 2, 2, 2, 2, 2, 2, 9, 5, 4, 6, 3, 3, 3, 3, 7, 2, 4, 3, 2, 5, 2, 2, 3, 2, 2, 2
Offset: 1

Views

Author

Omar E. Pol, Nov 28 2010

Keywords

Comments

These are the parts located in the "head" of the last section.
For other versions see A138136 and A182711.

Examples

			Triangle begins:
0,
2,
3,
4,2,2,
5,3,2,
6,3,3,4,2,2,2,2,
7,4,3,5,2,3,2,2,
8,4,4,5,3,6,2,3,3,2,4,2,2,2,2,2,2,
9,5,4,6,3,3,3,3,7,2,4,3,2,5,2,2,3,2,2,2
		

Crossrefs

Showing 1-2 of 2 results.