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.
%I A364232 #13 Jul 29 2023 10:37:14 %S A364232 1,-2,3,-3,5,-6,8,-10,9,-9,11,-9,14,-16,15,-19,17,-18,20,-17,24,-21, %T A364232 23,-30,26,-28,27,-24,29,-27,32,-42,33,-33,40,-27,38,-40,42,-53,41, %U A364232 -48,44,-35,45,-45,47,-57,57,-47,51,-42,53,-54,56,-80,60,-57,59,-51,62,-64,72,-83,70,-63,68,-53,69,-72 %N A364232 Expansion of Sum_{k>=0} x^(3*k+1) / (1 + x^(3*k+1))^2. %H A364232 Seiichi Manyama, <a href="/A364232/b364232.txt">Table of n, a(n) for n = 1..10000</a> %F A364232 a(n) = Sum_{d|n, n/d==1 (mod 3)} (-1)^(d+1) * d. %t A364232 nmax = 70; CoefficientList[Series[Sum[x^(3 k + 1)/(1 + x^(3 k + 1))^2, {k, 0, nmax}], {x, 0, nmax}], x] // Rest %t A364232 Table[DivisorSum[n, (-1)^(# + 1) # &, MemberQ[{1}, Mod[n/#, 3]] &], {n, 1, 70}] %Y A364232 Cf. A002129, A186690, A326399, A364012, A364204, A364235. %K A364232 sign %O A364232 1,2 %A A364232 _Ilya Gutkovskiy_, Jul 14 2023