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.

A293257 G.f.: Product_{m>0} (1 - x^m + 2!*x^(2*m) - 3!*x^(3*m) + 4!*x^(4*m) - 5!*x^(5*m)).

This page as a plain text file.
%I A293257 #11 Oct 05 2017 09:49:15
%S A293257 1,-1,1,-6,24,-117,-20,93,160,-122,-156,414,459,-2038,-2486,13333,
%T A293257 1246,2468,-8446,-13036,-4814,7848,-11453,50116,-46764,-1952,-164895,
%U A293257 214144,249038,396600,-1598966,254048,-465174,-559712,726422,747,1067574,2897334,165438
%N A293257 G.f.: Product_{m>0} (1 - x^m + 2!*x^(2*m) - 3!*x^(3*m) + 4!*x^(4*m) - 5!*x^(5*m)).
%H A293257 Seiichi Manyama, <a href="/A293257/b293257.txt">Table of n, a(n) for n = 0..500</a>
%p A293257 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0,
%p A293257       add(b(n-i*j, i-1)*j!*(-1)^j, j=0..min(5, n/i))))
%p A293257     end:
%p A293257 a:= n-> b(n$2):
%p A293257 seq(a(n), n=0..60);  # _Alois P. Heinz_, Oct 04 2017
%o A293257 (PARI) Vec(prod(m=1, 50, 1+sum(k=1, 5, (-1)^k*k!*x^(k*m))) + O(x^50)) \\ _Michel Marcus_, Oct 04 2017
%Y A293257 Column k=5 of A293071.
%Y A293257 Cf. A293250.
%K A293257 sign
%O A293257 0,4
%A A293257 _Seiichi Manyama_, Oct 04 2017