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-3 of 3 results.

A118054 Inverse Euler transform of A118052.

Original entry on oeis.org

0, 1, 0, 1, 2, 1, 2, 0, 2, 1, 3, 2, -1, 0, -3, 0, -2, 4, 5, 3, 5, -1, 5, 1, 4, 1, -11, -8, -25, -4, -2, 22, 46, 22, 47, -16, 23, -26, -20, -28, -144, -79, -218, 4, 36, 272, 454, 279, 465, -133, 89, -415, -455, -550, -1433, -728, -1676, 455, 1047, 3088, 4750, -7192, 13949, -2177, 8689
Offset: 0

Views

Author

Keywords

Comments

Does this sequence remain small? How small?

Crossrefs

Cf. A118052.

Programs

  • Mathematica
    A118052 = Cases[Import["https://oeis.org/A118052/b118052.txt", "Table"], {, }][[All, 2]];
    (* EulerInvTransform is defined in A022562 *)
    Join[{0}, EulerInvTransform[Rest @ A118052]] (* Jean-François Alcover, Feb 23 2020, updated Mar 17 2020 *)

Extensions

More terms from A118052 by Jean-François Alcover, Feb 23 2020

A240311 Number of partitions p of n such that (maximal multiplicity of the parts of p) <= (maximal part of p).

Original entry on oeis.org

1, 1, 1, 2, 4, 5, 8, 10, 16, 22, 32, 42, 59, 76, 103, 134, 179, 228, 301, 382, 494, 623, 796, 995, 1259, 1564, 1957, 2419, 3005, 3690, 4552, 5562, 6815, 8288, 10095, 12218, 14808, 17842, 21514, 25823, 30999, 37058, 44306, 52775, 62851, 74613, 88538, 104764
Offset: 0

Views

Author

Clark Kimberling, Apr 05 2014

Keywords

Examples

			a(6) counts these 8 partitions:  6, 51, 42, 411, 33, 3111, 321, 2211.
		

Crossrefs

Programs

  • Mathematica
    z = 60; f[n_] := f[n] = IntegerPartitions[n]; m[p_] := Max[Map[Length, Split[p]]]  (* maximal multiplicity *)
    Table[Count[f[n], p_ /; m[p] < Max[p]], {n, 0, z}]  (* A240310 *)
    Table[Count[f[n], p_ /; m[p] <= Max[p]], {n, 0, z}] (* A240311 *)
    Table[Count[f[n], p_ /; m[p] == Max[p]], {n, 0, z}] (* A240312 *)
    Table[Count[f[n], p_ /; m[p] >= Max[p]], {n, 0, z}] (* A240313 *)
    Table[Count[f[n], p_ /; m[p] > Max[p]], {n, 0, z}]  (* A240314 *)

Formula

a(n) = A240310(n) + A240312(n) for n >= 0.
a(n) + A240314(n) = A000041(n) for n >= 0.

A118053 Number of partitions of n which do not contain their signature as a subpartition.

Original entry on oeis.org

0, 0, 1, 1, 1, 2, 3, 5, 6, 8, 10, 14, 19, 26, 34, 45, 57, 74, 92, 118, 147, 185, 230, 287, 355, 441
Offset: 0

Views

Author

Keywords

Examples

			For n=3, signature([3]) = [1] is a subpartition of [3], signature([2,1]) = [1^2] is a subpartition of [2,1], but signature([1^3]) = [3] is not a subpartition of [1^3], so a(3)=1.
		

Crossrefs

Showing 1-3 of 3 results.