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 A329098 #4 Nov 05 2019 01:02:07 %S A329098 1,0,-1,-1,0,1,2,0,-3,-3,2,5,4,-4,-10,-5,10,16,5,-20,-27,0,41,38,-14, %T A329098 -73,-55,46,134,63,-118,-219,-55,252,356,-11,-510,-527,198,951,734, %U A329098 -644,-1702,-867,1579,2864,764,-3415,-4609,84,6808,6897,-2526,-12745,-9539,8383 %N A329098 Expansion of 1 / (1 + Sum_{p prime, k>=1} x^(p^k)). %F A329098 G.f.: 1 / (1 + Sum_{k>=1} x^A246655(k)). %t A329098 nmax = 55; CoefficientList[Series[1/(1 + Sum[Boole[PrimePowerQ[k]] x^k, {k, 1, nmax}]), {x, 0, nmax}], x] %t A329098 a[0] = 1; a[n_] := a[n] = -Sum[Boole[PrimePowerQ[k]] a[n - k], {k, 1, n}]; Table[a[n], {n, 0, 55}] %Y A329098 Cf. A002121, A246655, A280195. %K A329098 sign %O A329098 0,7 %A A329098 _Ilya Gutkovskiy_, Nov 04 2019