login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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
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