The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A182705 Row sums of triangle A182701. 3
1, 4, 12, 28, 60, 114, 210, 360, 603, 970, 1529, 2340, 3536, 5222, 7620, 10944, 15555, 21816, 30343, 41740, 56994, 77132, 103684, 138312, 183450, 241696, 316764, 412776, 535340, 690750, 887499, 1135072, 1446060, 1834742, 2319555, 2921616, 3667921, 4589260 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = n * A000070(n-1).
G.f.: x*f'(x), where f(x) = (x/(1 - x))*Product_{k>=1} 1/(1 - x^k). - Ilya Gutkovskiy, Jun 08 2017
MATHEMATICA
Total /@ Table[n*PartitionsP[n-k], {n, 38}, {k, n}] // Flatten (* Robert Price, Jun 23 2020 *)
PROG
(PARI) a000070(n) = sum(k=0, n, numbpart(k));
for(n=1, 100, print1(n*a000070(n - 1), ", ")) \\ Indranil Ghosh, Jun 08 2017
(Python)
from sympy import npartitions as p
def a000070(n): return sum([p(k) for k in range(n + 1)])
def a(n): return n*a000070(n - 1) # Indranil Ghosh, Jun 08 2017
CROSSREFS
Sequence in context: A028346 A356728 A079089 * A186924 A261320 A179023
KEYWORD
nonn
AUTHOR
Omar E. Pol, Nov 28 2010
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 May 15 11:50 EDT 2024. Contains 372540 sequences. (Running on oeis4.)