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.

A330543 Expansion of e.g.f. Product_{k>=1} (1 + arctan(x^k)).

This page as a plain text file.
%I A330543 #5 Dec 18 2019 09:02:30
%S A330543 1,1,2,10,48,344,2400,22128,223104,2520576,30689280,415560960,
%T A330543 6058229760,95710187520,1602520657920,28908021381120,554882885222400,
%U A330543 11182172398387200,237581975468113920,5324332409912033280,125630406117045043200
%N A330543 Expansion of e.g.f. Product_{k>=1} (1 + arctan(x^k)).
%F A330543 E.g.f.: exp(Sum_{k>=1} Sum_{d|k} (-1)^(d + 1) * arctan(x^(k/d))^d / d).
%t A330543 nmax = 20; CoefficientList[Series[Product[(1 + ArcTan[x^k]), {k, 1, nmax}], {x, 0, nmax}], x] Range[0, nmax]!
%t A330543 nmax = 20; CoefficientList[Series[Exp[Sum[Sum[(-1)^(d + 1) ArcTan[x^(k/d)]^d/d, {d, Divisors[k]}], {k, 1, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!
%Y A330543 Cf. A010050, A270666, A330544.
%K A330543 nonn
%O A330543 0,3
%A A330543 _Ilya Gutkovskiy_, Dec 17 2019