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.

A193933 E.g.f. A(x) = exp(x+x^2+x^3+x^4+x^5+x^6+x^7).

This page as a plain text file.
%I A193933 #18 Nov 11 2020 19:40:40
%S A193933 1,1,3,13,73,501,4051,37633,354033,3870793,46240291,597877941,
%T A193933 8298856633,122751616573,1921371570483,31604885804521,552755907700321,
%U A193933 10156326950561553,195421314725788483,3926668816722630493,82199760488718697641,1789438454541407131141
%N A193933 E.g.f. A(x) = exp(x+x^2+x^3+x^4+x^5+x^6+x^7).
%H A193933 Alois P. Heinz, <a href="/A193933/b193933.txt">Table of n, a(n) for n = 0..476</a>
%F A193933 E.g.f.: exp(Sum_{j=1..7} x^j).
%F A193933 a(n) = n!*sum(k=1..n, sum(i=0..(n-k)/7, (-1)^i*binomial(k,k-i)*binomial(n-7*i-1,k-1))/k!), n>0, a(0)=1.
%p A193933 a:= proc(n) option remember; `if`(n=0, 1, add(
%p A193933       a(n-j)*binomial(n-1, j-1)*j!, j=1..min(n, 7)))
%p A193933     end:
%p A193933 seq(a(n), n=0..23);  # _Alois P. Heinz_, Sep 29 2017
%t A193933 terms = 22;
%t A193933 CoefficientList[E^Total[x^Range[7]] + O[x]^terms, x] Range[0, terms-1]! (* _Jean-François Alcover_, Nov 11 2020 *)
%o A193933 (Maxima)
%o A193933 a(n):=if n=0 then 1 else n!*sum(sum((-1)^i*binomial(k, k-i)*binomial(n-7*i-1, k-1), i, 0, (n-k)/7)/k!, k, 1, n);
%o A193933 makelist(a(n),n,0,20);
%Y A193933 Column k=7 of A293669.
%K A193933 nonn
%O A193933 0,3
%A A193933 _Vladimir Kruchinin_, Aug 09 2011