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.

A320549 Number of partitions of n into parts of exactly seven sorts which are introduced in ascending order such that sorts of adjacent parts are different.

This page as a plain text file.
%I A320549 #6 Oct 25 2018 04:10:00
%S A320549 1,22,289,2957,26073,208516,1558219,11087757,76079369,507834036,
%T A320549 3318628468,21330628088,135325211035,849659803048,5290544985029,
%U A320549 32722489543068,201296535411532,1232850239281547,7523511821702402,45777353201698899,277862479922939524
%N A320549 Number of partitions of n into parts of exactly seven sorts which are introduced in ascending order such that sorts of adjacent parts are different.
%H A320549 Alois P. Heinz, <a href="/A320549/b320549.txt">Table of n, a(n) for n = 7..1000</a>
%F A320549 a(n) ~ 6^(n-1) / (6! * QPochhammer[1/6]). - _Vaclav Kotesovec_, Oct 25 2018
%p A320549 b:= proc(n, i, k) option remember; `if`(n=0 or i=1, k^(n-1),
%p A320549       b(n, i-1, k) +`if`(i>n, 0, k*b(n-i, i, k)))
%p A320549     end:
%p A320549 A:= (n, k)-> `if`(n=0, 1, `if`(k<2, k, k*b(n$2, k-1))):
%p A320549 a:= n-> (k-> add(A(n, k-i)*(-1)^i/(i!*(k-i)!), i=0..k))(7):
%p A320549 seq(a(n), n=7..40);
%Y A320549 Column k=7 of A262495.
%Y A320549 Cf. A258462.
%K A320549 nonn
%O A320549 7,2
%A A320549 _Alois P. Heinz_, Oct 15 2018