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!)
A178187 Numerators of sum (1/3)^((k^2+3k)/2) from k=1 to n. 1
1, 28, 2269, 551368, 401947273, 879058686052, 5767504039187173, 113521782003321126160, 6703347705514109178621841, 1187477935988707898665323267628, 631074461779774914374598062671491949 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Series of the kind m^((k^2+3k)/2) from k=1 to n was studied by Bernoulli and Euler.
LINKS
MATHEMATICA
aa = {}; m = 1/3; sum = 0; Do[sum = sum + m^((n + 3) n/2); AppendTo[aa, Numerator[sum]], {n, 1, 20}]; aa (*Artur Jasinski*)
Accumulate[Table[(1/3)^((k^2+3k)/2), {k, 20}]]//Numerator (* Harvey P. Dale, May 29 2020 *)
PROG
(PARI) a(n) = numerator(sum(k=1, n, (1/3)^((k^2+3*k)/2))); \\ Michel Marcus, Sep 09 2013
CROSSREFS
Cf. A217628 (denominators).
Sequence in context: A276702 A007219 A203751 * A184134 A327294 A281137
KEYWORD
frac,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 25 09:56 EDT 2024. Contains 371967 sequences. (Running on oeis4.)