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!)
A178190 Sum 7^((k^2+3k)/2) from k=1 to n. 1
49, 16856, 40370463, 678263443312, 79792944561055313, 65712442156478841194856, 378818757978106938161558820799, 15286701010761334171872123930835647200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Series of the kind m^((k^2+3k)/2) from k=1 to n was studied by Bernoulli and Euler.
LINKS
MAPLE
A178190:=n->add(7^((k^2 + 3*k)/2), k=1..n); seq(A178190(n), n=1..10); # Wesley Ivan Hurt, Apr 01 2014
MATHEMATICA
aa = {}; m = 7; sum = 0; Do[sum = sum + m^((n + 3) n/2); AppendTo[aa, sum], {n, 1, 20}]; aa (* Artur Jasinski *)
Table[Sum[7^((k^2 + 3 k)/2), {k, n}], {n, 10}] (* Wesley Ivan Hurt, Apr 01 2014 *)
PROG
(PARI) a(n) = sum(k=1, n, 7^((k^2+3*k)/2)); \\ Michel Marcus, Sep 09 2013
CROSSREFS
Sequence in context: A202991 A203061 A013741 * A319941 A210819 A173171
KEYWORD
nonn
AUTHOR
Artur Jasinski, May 21 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 April 24 04:14 EDT 2024. Contains 371918 sequences. (Running on oeis4.)