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.

A374081 Expansion of Product_{k>=1} (1 - x^(4*k-3)) * (1 - x^(4*k)).

This page as a plain text file.
%I A374081 #6 Jun 28 2024 14:01:12
%S A374081 1,-1,0,0,-1,0,1,0,-1,1,0,0,0,1,0,-1,0,1,-1,0,1,0,-1,0,0,0,-1,0,2,-1,
%T A374081 -1,1,0,-1,0,1,0,-1,0,1,0,-1,1,1,0,-2,1,1,-2,0,2,0,-1,0,1,0,-1,0,2,-1,
%U A374081 -2,1,1,-1,-1,1,2,-2,-1,2,0,-2,0,2,0,-2,0,2,-1,-2,1,2,-1,-2,1,2
%N A374081 Expansion of Product_{k>=1} (1 - x^(4*k-3)) * (1 - x^(4*k)).
%H A374081 Ilya Gutkovskiy, <a href="/A374081/a374081.jpg">Scatterplot of a(n) up to n=10000</a>
%t A374081 nmax = 85; CoefficientList[Series[Product[(1 - x^(4 k - 3)) (1 - x^(4 k)), {k, 1, nmax}], {x, 0, nmax}], x]
%t A374081 a[0] = 1; a[n_] := a[n] = -(1/n) Sum[DivisorSum[k, # &, Or[Mod[#, 4] == 0, Mod[#, 4] == 1] &] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 85}]
%Y A374081 Cf. A010815, A035362, A042948, A081362, A082303, A106459, A137569, A274719, A284313, A301504, A374058, A374060, A374080.
%K A374081 sign
%O A374081 0,29
%A A374081 _Ilya Gutkovskiy_, Jun 27 2024