cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A292496 Number of solutions to +- 1^2 +- 3^2 +- 5^2 +- 7^2 +- ... +- (4*n-1)^2 = 0.

Original entry on oeis.org

1, 0, 0, 0, 2, 0, 12, 0, 40, 10, 516, 124, 5020, 1828, 48570, 32806, 527890, 444480, 6137942, 6482314, 70573856, 93276044, 853480374, 1300190254, 10660384742, 18371629260, 134129890382, 259804151324, 1728886287134, 3667061002286, 22672130669968
Offset: 0

Views

Author

Seiichi Manyama, Sep 17 2017

Keywords

Examples

			For n=4 the 2 solutions are +1^2-3^2-5^2+7^2-9^2+11^2+13^2-15^2 = 0 and -1^2+3^2+5^2-7^2+9^2-11^2-13^2+15^2 = 0.
		

Crossrefs

Programs

  • PARI
    a(n) = polcoeff(prod(k=1, 2*n, x^(2*k-1)^2+1/x^(2*k-1)^2), 0); \\ Michel Marcus, Sep 18 2017

Formula

Constant term in the expansion of Product_{k=1..2*n} (x^(2*k-1)^2+1/x^(2*k-1)^2).