login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A238786 Number of palindromic partitions of n whose greatest part has multiplicity <= 3. 3
1, 2, 2, 3, 3, 6, 6, 10, 10, 16, 17, 25, 26, 38, 40, 57, 59, 83, 86, 119, 123, 169, 174, 235, 241, 325, 333, 443, 453, 599, 612, 802, 818, 1067, 1087, 1407, 1432, 1845, 1876, 2401, 2440, 3110, 3158, 4003, 4062, 5130, 5202, 6537, 6625, 8298, 8406, 10483 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Palindromic partitions are defined at A025065.
LINKS
EXAMPLE
a(8) counts these 10 partitions (written as palindromes): 8, 161, 44, 242, 11411, 323, 1331, 12221, 112211, 1112111.
MATHEMATICA
z = 40; p[n_, k_] := Select[IntegerPartitions[n], (Count[OddQ[Transpose[Tally[#]][[2]]], True] <= 1) && (Count[#, Max[#]] <= k) &]
Table[p[n, 1], {n, 1, 12}]
t2 = Table[Length[p[n, 2]], {n, 1, z}] (* A238785 *)
Table[p[n, 3], {n, 1, 12}]
t3 = Table[Length[p[n, 3]], {n, 1, z}] (* A238786 *)
Table[p[n, 4], {n, 1, 12}]
t4 = Table[Length[p[n, 4]], {n, 1, z}] (* A238787 *)
(* Peter J. C. Moses, Mar 03 2014 *)
CROSSREFS
Sequence in context: A116932 A240579 A292225 * A238547 A325681 A116450
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Mar 05 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 2 18:59 EDT 2024. Contains 374866 sequences. (Running on oeis4.)