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!)
A287991 Expansion of Jacobi theta constant (theta_2/2)^48. 1
1, 48, 1128, 17344, 196836, 1764192, 13051008, 82244736, 452197434, 2210431056, 9753024192, 39328459968, 146436844568, 507826976160, 1652238451200, 5074887938688, 14794635174459, 41126600601168, 109456398969568, 279899944411776, 689873759134308 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Number of ways of writing n as the sum of 48 triangular numbers.
LINKS
FORMULA
a(0) = 1, a(n) = (48/n)*Sum_{k=1..n} A002129(k)*a(n-k) for n > 0.
a(n) = 1/3110400 * Sum_{a, b, c, x, y, z > 0, a*x + b*y + c*z = n + 6, x == y == z == 1 mod 2 and a > b > c} (a*b*c)^3*((a^2 - b^2)*(a^2 - c^2)*(b^2 - c^2))^2.
G.f.: exp(48*Sum_{k>=1} (x^k/k)/(1 + x^k)). - Ilya Gutkovskiy, Aug 02 2017
EXAMPLE
4*1 + 2*1 + 1*1 = 1 + 6. So a(1) = (4*2*1)^3*((16-1)*(16-4)*(4-1))^2 / 3110400 = 48.
MATHEMATICA
a002129[n_]:=-Sum[(-1)^d*d, {d, Divisors[n]}]; a[n_]:=a[n]=If[n==0, 1, 48 Sum[a002129[k] a[n - k], {k, n}]/n]; Table[a[n], {n, 0, 100}] (* Indranil Ghosh, Aug 02 2017 *)
PROG
(Python)
from sympy import divisors
from sympy.core.cache import cacheit
def a002129(n): return -sum((-1)**d*d for d in divisors(n))
@cacheit
def a(n): return 1 if n==0 else 48*sum(a002129(k)*a(n - k) for k in range(1, n + 1))//n
print([a(n) for n in range(101)]) # Indranil Ghosh, Aug 02 2017
CROSSREFS
Column k=48 of A286180.
Cf. A007331 (k=4*1*2), A014809 (k=4*2*3), this sequence (k=4*3*4).
Sequence in context: A319309 A022077 A010964 * A290403 A035719 A035797
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Jun 04 2017
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:03 EDT 2024. Contains 371794 sequences. (Running on oeis4.)