The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A246575 Expansion of (Product_{r>=1} (1-x^r))*x^(k^2) / Product_{i=1..k} (1-x^i)^2 with k=1. 6
0, 1, 1, 0, -1, -2, -2, -2, -1, 0, 1, 2, 3, 3, 3, 3, 2, 1, 0, -1, -2, -3, -4, -4, -4, -4, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 5, 5, 5, 5, 5, 4, 3, 2, 1, 0, -1, -2, -3, -4, -5, -6, -6, -6, -6, -6, -6, -6, -5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5, 6, 7, 7, 7, 7, 7, 7, 7, 7, 6, 5, 4, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
LINKS
J. Fulman, Random matrix theory over finite fields, Bull. Amer. Math. Soc., 39 (No. 1, 2002), 51-85, MR1864086 (2002i:60012). See top of page 70, Eq. 1, with k=1.
FORMULA
G.f.: x*exp( Sum_{n>=1} x^n/n * (1 - 2*x^n)/(1 - x^n) ). - Paul D. Hanna, Dec 14 2015
MAPLE
fGL:=proc(k) local a, i, r;
a:=x^(k^2)/mul((1-x^i)^2, i=1..k);
a:=a*mul(1-x^r, r=1..101);
series(a, x, 101);
seriestolist(%);
end; fGL(1);
MATHEMATICA
nmax = 100; CoefficientList[Series[x*Exp[Sum[x^k/k * (1 - 2*x^k)/(1 - x^k), {k, 1, nmax}]], {x, 0, nmax}], x] (* Vaclav Kotesovec, Dec 17 2015 *)
PROG
(PARI) {a(n) = my(A=1); A = x*exp( sum(k=1, n+1, x^k/k * (1-2*x^k)/(1 - x^k) +x*O(x^n) ) ); polcoeff(A, n)}
for(n=0, 100, print1(a(n), ", ")) \\ Paul D. Hanna, Dec 14 2015
CROSSREFS
k=0 gives A010815.
Sequence in context: A307012 A343641 A112211 * A357563 A112215 A176389
KEYWORD
sign
AUTHOR
N. J. A. Sloane, Aug 31 2014
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 May 30 02:46 EDT 2024. Contains 372957 sequences. (Running on oeis4.)