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.

A319237 Positions of nonzero terms in A114592, the list of coefficients in the expansion of Product_{n > 1} (1 - 1/n^s).

This page as a plain text file.
%I A319237 #5 Sep 16 2018 21:35:41
%S A319237 1,2,3,4,5,7,9,11,12,13,17,18,19,20,23,24,25,28,29,30,31,32,36,37,40,
%T A319237 41,42,43,44,45,47,48,49,50,52,53,54,56,59,60,61,63,66,67,68,70,71,72,
%U A319237 73,75,76,78,79,80,83,84,88,89,90,92,97,98,99,100,101,102
%N A319237 Positions of nonzero terms in A114592, the list of coefficients in the expansion of Product_{n > 1} (1 - 1/n^s).
%t A319237 facs[n_]:=If[n<=1,{{}},Join@@Table[Map[Prepend[#,d]&,Select[facs[n/d],Min@@#>=d&]],{d,Rest[Divisors[n]]}]];
%t A319237 Join@@Position[Table[Sum[(-1)^Length[f],{f,Select[facs[n],UnsameQ@@#&]}],{n,100}],_Integer?(Abs[#]>0&)]
%Y A319237 Complement of A319238.
%Y A319237 Cf. A001055, A045778, A114592, A162247, A190938, A281116, A281118, A303386, A316441, A319239.
%K A319237 nonn
%O A319237 1,2
%A A319237 _Gus Wiseman_, Sep 15 2018