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!)
A337971 a(n) = 5^(n*(n-1)/2) + 5^(n*(n+1)/2) for n > 0, with a(0) = 1. 1
1, 6, 130, 15750, 9781250, 30527343750, 476867675781250, 37253379821777343750, 14551952481269836425781250, 28421723982319235801696777343750, 277555784577998565509915351867675781250, 13552527433624561581382295116782188415527343750 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
G.f.: Sum_{n=-oo..+oo} 5^(n*(n+1)/2) * x^(n^2) = Sum_{n>=0} a(n) * x^(n^2).
G.f.: Product_{n>=1} (1 - 5^n*x^(2*n)) * (1 + 5^n*x^(2*n-1)) * (1 + 5^(n-1)*x^(2*n-1)) = Sum_{n>=0} a(n) * x^(n^2), by the Jacobi triple product identity.
EXAMPLE
G.f.: A(x) = 1 + 6*x + 130*x^4 + 15750*x^9 + 9781250*x^16 + 30527343750*x^25 + 476867675781250*x^36 + 37253379821777343750*x^49 + 14551952481269836425781250*x^64 + ... + a(n)*x^(n^2) + ...
which can be generated by the Jacobi Triple Product:
A(x) = (1 - 5*x^2)*(1 + 5*x)*(1 + x) * (1 - 5^2*x^4)*(1 + 5^2*x^3)*(1 + 5*x^3) * (1 - 5^3*x^6)*(1 + 5^3*x^5)*(1 + 5^2*x^5) * (1 - 5^4*x^8)*(1 + 5^4*x^7)*(1 + 5^3*x^7) * ... * (1 - 5^n*x^(2*n))*(1 + 5^n*x^(2*n-1))*(1 + 5^(n-1)*x^(2*n-1)) * ...
PROG
(PARI) {a(n) = if(n==0, 1, 5^(n*(n-1)/2) + 5^(n*(n+1)/2))}
for(n=0, 15, print1(a(n), ", "))
(PARI) /* As Coefficients in a Jacobi Theta Function: */
{a(n) = polcoeff( sum(m=-n, n, 5^(m*(m+1)/2)*x^(m^2) +x*O(x^(n^2))), n^2)}
for(n=0, 15, print1(a(n), ", "))
(PARI) /* By the Jacobi Triple Product identity: */
{a(n) = polcoeff( prod(m=1, n^2\2+1, (1 - 5^m*x^(2*m)) * (1 + 5^m*x^(2*m-1)) * (1 + 5^(m-1)*x^(2*m-1)) +x*O(x^(n^2))), n^2)}
for(n=0, 15, print1(a(n), ", "))
CROSSREFS
Sequence in context: A188718 A077031 A302770 * A281402 A137038 A024276
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Oct 04 2020
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 10:11 EDT 2024. Contains 371935 sequences. (Running on oeis4.)