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.

A346841 E.g.f.: Product_{k>=1} 1 / (1 - x^k)^sin(x).

This page as a plain text file.
%I A346841 #30 Sep 18 2021 07:57:07
%S A346841 1,0,2,9,40,360,2480,28833,266936,3562920,45634258,659631225,
%T A346841 10231705196,176661237948,3080315922294,59430009554685,
%U A346841 1217593208993232,25766943601055184,583245289316927058,13861911731632256457,343615639889119016556,8925102256331257339140,242399591002192962709230
%N A346841 E.g.f.: Product_{k>=1} 1 / (1 - x^k)^sin(x).
%F A346841 E.g.f.: exp( sin(x) * Sum_{k>=1} sigma(k)*x^k/k ).
%F A346841 E.g.f.: exp( sin(x) * Sum_{k>=1} x^k/(k*(1 - x^k)) ).
%o A346841 (PARI) N=40; x='x+O('x^N); Vec(serlaplace(1/prod(k=1, N, (1-x^k)^sin(x))))
%o A346841 (PARI) N=40; x='x+O('x^N); Vec(serlaplace(exp(sin(x)*sum(k=1, N, sigma(k)*x^k/k))))
%o A346841 (PARI) N=40; x='x+O('x^N); Vec(serlaplace(exp(sin(x)*sum(k=1, N, x^k/(k*(1-x^k))))))
%Y A346841 Cf. A000203, A053529, A335626, A346547, A346941, A347774.
%K A346841 nonn
%O A346841 0,3
%A A346841 _Seiichi Manyama_, Sep 18 2021