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.

A228816 Sum of all parts of all partitions of n that contain 1 as a part.

This page as a plain text file.
%I A228816 #12 Sep 27 2015 16:44:37
%S A228816 1,2,6,12,25,42,77,120,198,300,462,672,1001,1414,2025,2816,3927,5346,
%T A228816 7315,9800,13167,17424,23046,30120,39375,50908,65772,84280,107822,
%U A228816 136950,173724,218944,275517,344862,430850,535788,665149,822206,1014585,1247400
%N A228816 Sum of all parts of all partitions of n that contain 1 as a part.
%F A228816 a(n) = n*A000041(n-1).
%F A228816 a(n) = A066186(n-1) + A000041(n-1), n >= 2.
%F A228816 a(n) = A194552(n-1) + A000070(n-1), n >= 2.
%t A228816 Table[Total[Flatten[Select[IntegerPartitions[n],MemberQ[#,1]&]]],{n,40}] (* _Harvey P. Dale_, Sep 27 2015 *)
%Y A228816 Column 1 of A182701.
%Y A228816 Cf. A000041, A000070, A066186, A138880, A194552, A228823.
%K A228816 nonn
%O A228816 1,2
%A A228816 _Omar E. Pol_, Sep 23 2013