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.

A105482 Number of partitions of {1...n} containing 5 pairs of consecutive integers, where each pair is counted within a block and a string of more than 2 consecutive integers are counted two at a time.

This page as a plain text file.
%I A105482 #13 Jul 10 2020 22:07:45
%S A105482 1,6,42,280,1890,13104,93786,694584,5328180,42336294,348272925,
%T A105482 2963993760,26073738236,236857536216,2219777316216,21441389281680,
%U A105482 213260412549303,2182163481418536,22951202450444191,247914874683742728
%N A105482 Number of partitions of {1...n} containing 5 pairs of consecutive integers, where each pair is counted within a block and a string of more than 2 consecutive integers are counted two at a time.
%H A105482 A. O. Munagi, <a href="http://www.emis.de/journals/HOA/IJMMS/2005/3451.pdf">Set Partitions with Successions and Separations</a>, IJMMS 2005:3 (2005), 451-463.
%F A105482 a(n) = binomial(n-1, 5)*Bell(n-6), the case r = 5 in the general case of r pairs: c(n, r) = binomial(n-1, r)*B(n-r-1).
%F A105482 Let A be the upper Hessenberg matrix of order n defined by: A[i,i-1]=-1, A[i,j]=binomial(j-1,i-1), (i<=j), and A[i,j]=0 otherwise. Then, for n>=5, a(n+1)=(-1)^(n-5)*coeff(charpoly(A,x),x^5). [_Milan Janjic_, Jul 08 2010]
%F A105482 E.g.f.: (1/5!) * Integral (x^5 * exp(exp(x) - 1)) dx. - _Ilya Gutkovskiy_, Jul 10 2020
%e A105482 a(7) = 6 because the partitions of {1,2,3,4,5,6,7} with 5 pairs of consecutive integers are 123456/7,12345/67,1234/567,123/4567,12/34567,1/234567.
%p A105482 seq(binomial(n-1,5)*combinat[bell](n-6),n=6..26);
%Y A105482 Cf. A105481, A105487, A105491.
%K A105482 easy,nonn
%O A105482 6,2
%A A105482 _Augustine O. Munagi_, Apr 10 2005