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.

Previous Showing 21-24 of 24 results.

A139094 Largest part of the n-th row in the integrated diagram of the shell model of partitions.

Original entry on oeis.org

1, 2, 3, 2, 4, 3, 5, 2, 3, 4, 6, 3, 4, 5, 7, 2, 3, 4, 4, 5, 6, 8, 3, 3, 4, 5, 5, 6, 7, 9, 2, 3, 4, 4, 4, 5, 5, 6, 6, 7, 8, 10, 3, 3, 4, 4, 5, 5, 5, 6, 6, 7, 7, 8, 9, 11, 2, 3, 3, 4, 4, 4, 4, 5, 5, 5, 6, 6, 6, 6, 7, 7, 8, 8, 9, 10, 12
Offset: 1

Views

Author

Omar E. Pol, May 26 2008

Keywords

Crossrefs

A177739 In those partitions of n with every part >=3, the total number of parts (counted with multiplicity).

Original entry on oeis.org

0, 0, 0, 1, 1, 1, 3, 3, 5, 8, 10, 13, 22, 25, 34, 49, 62, 77, 108, 132, 172, 221, 276, 345, 448, 544, 680, 851, 1050, 1280, 1596, 1931, 2366, 2884, 3496, 4220, 5135, 6144, 7403, 8890, 10644, 12679, 15177, 18007, 21419, 25399, 30066, 35488, 41971, 49344, 58088
Offset: 0

Views

Author

Jason Kimberley, May 13 2010

Keywords

Comments

Also the number of components (counted with multiplicity) of the 2-regular simple graphs of order n.

Crossrefs

The number of such partitions is given by A008483.
Lengths of the rows of triangle A176210.
Row sums of triangle A177740.

Programs

  • Magma
    [ #&cat RestrictedPartitions(n,{3..n}):n in [0..50]];
  • Mathematica
    Table[Length[Flatten[Select[IntegerPartitions[n],Min[#]>2&]]],{n,0,50}] (* Harvey P. Dale, May 12 2020 *)

A195821 Total number of parts that are not the smallest part in all partitions of n that do not contain 1 as a part.

Original entry on oeis.org

0, 0, 0, 0, 1, 1, 3, 5, 7, 12, 19, 25, 37, 56, 72, 102, 138, 187, 246, 330, 422, 563, 721, 931, 1177, 1523, 1903, 2421, 3020, 3797, 4700, 5875, 7218, 8956, 10954, 13474, 16401, 20083, 24316, 29576, 35685, 43179, 51870, 62490, 74757, 89666, 106927, 127687
Offset: 1

Views

Author

Omar E. Pol, Oct 19 2011

Keywords

Comments

Total number of parts that are not the smallest part in all partitions of the head of the last section of the set of partitions of n. For more information see A195820.

Examples

			For n = 8 the seven partitions of 8 that do not contain 1 as a part are:
.   8
.   4  +  4
.  (5) +  3
.  (6) +  2
.  (3) + (3) +  2
.  (4) +  2  +  2
.   2  +  2  +  2  +  2
Note that in every partition the parts that are not the smallest part are shown between parentheses. The total number of parts that are not the smallest part is 0+0+1+1+2+1+0 = 5, so a(8) = 5.
		

Crossrefs

Formula

a(n) = A138135(n) - A195820(n) = A138137(n) - A195820(n) - A000041(n-1).

A330242 Sum of largest emergent parts of the partitions of n.

Original entry on oeis.org

0, 0, 0, 2, 3, 9, 12, 24, 33, 54, 72, 112, 144, 210, 273, 379, 485, 661, 835, 1112, 1401, 1825, 2284, 2944, 3652, 4645, 5745, 7223, 8879, 11080, 13541, 16760, 20406, 25062, 30379, 37102, 44761, 54351, 65347, 78919, 94517, 113645, 135603, 162331, 193088, 230182, 272916, 324195, 383169, 453571
Offset: 1

Views

Author

Omar E. Pol, Dec 06 2019

Keywords

Comments

In other words: a(n) is the sum of the largest parts of all partitions of n that contain emergent parts.
The partitions of n that contain emergent parts are the partitions that contain neither 1 nor n as a part. All parts of these partitions are emergent parts except the last part of every partition.
For the definition of emergent part see A182699.

Examples

			For n = 9 the diagram of
the partitions of 9 that
do not contain 1 as a part
is as shown below:           Partitions
.
    |_ _ _|   |   |   |      [3, 2, 2, 2]
    |_ _ _ _ _|   |   |      [5, 2, 2]
    |_ _ _ _|     |   |      [4, 3, 2]
    |_ _ _ _ _ _ _|   |      [7, 2]
    |_ _ _|     |     |      [3, 3, 3]
    |_ _ _ _ _ _|     |      [6, 3]
    |_ _ _ _ _|       |      [5, 4]
    |_ _ _ _ _ _ _ _ _|      [9]
.
Note that the above diagram is also the "head" of the last section of the set of partitions of 9, where the "tail" is formed by A000041(9-1)= 22 1's.
The diagram of the
emergent parts is as
shown below:                 Emergent parts
.
    |_ _ _|   |   |          [3, 2, 2]
    |_ _ _ _ _|   |          [5, 2]
    |_ _ _ _|     |          [4, 3]
    |_ _ _ _ _ _ _|          [7]
    |_ _ _|     |            [3, 3]
    |_ _ _ _ _ _|            [6]
    |_ _ _ _ _|              [5]
.
The sum of the largest emergent parts is 3 + 5 + 4 + 7 + 3 + 6 + 5 = 33, so a(9) = 33.
		

Crossrefs

Formula

a(n) = A138137(n) - n.
a(n) = A207031(n,1) - n.
Previous Showing 21-24 of 24 results.