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.

A238790 Number of palindromic partitions of n whose least part has multiplicity <= 4.

This page as a plain text file.
%I A238790 #4 Mar 12 2014 12:57:50
%S A238790 1,2,2,4,3,6,6,10,9,14,14,22,21,32,29,45,43,62,61,87,83,118,113,159,
%T A238790 153,214,206,283,272,368,359,485,469,627,607,808,784,1036,1004,1318,
%U A238790 1282,1670,1628,2112,2053,2651,2583,3317,3235,4134,4034,5138,5013,6355
%N A238790 Number of palindromic partitions of n whose least part has multiplicity <= 4.
%C A238790 Palindromic partitions are defined at A025065.
%e A238790 a(8) counts these 10 partitions (written as palindromes):  8, 161, 44, 242, 11411, 323, 1331, 2222, 12221, 112211.
%t A238790 z = 40; p[n_, k_] := Select[IntegerPartitions[n], (Count[OddQ[Transpose[Tally[#]][[2]]], True] <= 1) && (Count[#, Min[#]] <= k) &]
%t A238790 Table[p[n, 2], {n, 1, 12}]
%t A238790 t2 = Table[Length[p[n, 2]], {n, 1, z}]  (* A238788 *)
%t A238790 Table[p[n, 3], {n, 1, 12}]
%t A238790 t3 = Table[Length[p[n, 3]], {n, 1, z}]  (* A238789 *)
%t A238790 Table[p[n, 4], {n, 1, 12}]
%t A238790 t4 = Table[Length[p[n, 4]], {n, 1, z}]  (* A238790 *)
%t A238790 (* _Peter J. C. Moses_, Mar 03 2014 *)
%Y A238790 Cf. A025065, A238788, A238789, A238779.
%K A238790 nonn,easy
%O A238790 1,2
%A A238790 _Clark Kimberling_, Mar 05 2014