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!)
A111685 n + n(n+1) + n(n+1)(n+2) + ..., with n terms. 1
1, 8, 75, 984, 17045, 366288, 9374967, 278095760, 9375293169, 353906211240, 14785127222723, 677150215857192, 33734100501544365, 1816008001717251104, 105048613959883117935, 6497985798745934394528, 427999600108502895779657 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Rising Factorial.
EXAMPLE
a(3) = 3+ 3*4 +3*4*5 = 75.
MATHEMATICA
Table[Total[Rest[FoldList[Times, 1, Range[n, 2n-1]]]], {n, 20}] (* Harvey P. Dale, Apr 22 2011 *)
Table[Total[Pochhammer[n, Range[n]]], {n, 20}] (* T. D. Noe, Apr 22 2011 *)
PROG
(PARI) a(n) = sum(k=0, n-1, prod(j=0, k, n+j)) (Shepherd)
CROSSREFS
Cf. A054654.
Sequence in context: A261065 A071720 A273998 * A302814 A088376 A096293
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Aug 16 2005
EXTENSIONS
More terms from Rick L. Shepherd, Aug 16 2005
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 April 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)