A072837 Duplicate of A023917.
1, 0, 0, 0, 0, 12, 0, 0, 30, 20, 0, 0, 30, 0, 0, 0, 0, 120, 0, 0, 132, 60, 0, 0, 90, 0, 0, 0, 0, 180
Offset: 0
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.
f[x_, y_]:= QPochhammer[-x, x*y]*QPochhammer[-y, x*y]*QPochhammer[x*y, x*y]; F[6, q_]:= ( -3*f[q, q]^5 + 5*f[q, q]^3*f[q^3, q^3]^2 + 15*f[q, q]*f[q^3, q^3]^4 + 15*f[q^3, q^3]^6/f[q, q] )/32; cfs = CoefficientList[Series[F[6, q], {q, 0, 500}], q]; Take[Pick[Range[Length[cfs]] - 1, Sign[Abs[cfs]], 1], 50] (* G. C. Greubel, Apr 16 2018 *) Flatten[#+{0,5,8,9}&/@(12*Range[0,20])] (* Harvey P. Dale, Apr 10 2022 *)
1 + 30*q^4 + 30*q^6 + 132*q^10 + 90*q^12 + 270*q^16 + 140*q^18 + 420*q^22 + ...
al[n_, l_, p_, nn_] := Sum[Exp[-2 Pi I k l/n] EllipticTheta[3, Pi k/n, q^p]^n, {k, n}] / n / Sum[q^(p n (m + l/n)^2), {m, -nn, nn}] + O[q]^nn; as[n_, s_, nn_] := CoefficientList[FullSimplify[Normal@Sum[al[n, l, n/s, nn], {l, s, n, s}]], q]; as[6, 1, 30] (*A023917*) as[6, 2, 30][[;; ;; 2]] (*this sequence*) as[6, 3, 30] (*A125561*) (* Andrey Zabolotskiy, Feb 17 2022 *)
1 + 14*x^3 + 42*x^5 + 70*x^6 + 42*x^7 + 210*x^10 + 294*x^12 + 294*x^13 + ...
a[n_] := Module[{A, A7}, A = x*O[x]^n; A7 = QPochhammer[x^7 + A]; A = QPochhammer[x + A]; SeriesCoefficient[A^7 / A7 + 7 * x * (A * A7)^3 + 7 * x^2 * A7^7 / A, {x, 0, n}]]; Table[a[n], {n, 0, 80}] (* Jean-François Alcover, Nov 05 2015, adapted from Michael Somos's PARI script *)
{a(n) = local(A, A7); if( n<0, 0, A = x * O(x^n); A7 = eta(x^7 + A); A = eta(x + A); polcoeff( A^7 / A7 + 7 * x * (A * A7)^3 + 7 * x^2 * A7^7 / A, n))}; /* Michael Somos, Jan 29 2011 */
Comments