[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
login
Revision History for A176735 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
a(n) = (n+8)*a(n-1) + (n-1)*a(n-2), a(-1)=0, a(0)=1.
(history; published version)
#15 by Joerg Arndt at Fri May 27 13:27:21 EDT 2016
STATUS

reviewed

approved

#14 by G. C. Greubel at Fri May 27 11:35:11 EDT 2016
STATUS

proposed

reviewed

#13 by Benedict W. J. Irwin at Fri May 27 11:31:33 EDT 2016
STATUS

editing

proposed

#12 by Benedict W. J. Irwin at Fri May 27 11:29:38 EDT 2016
FORMULA

a(n) = (-1)^n*2F0(10,-n;;1). - Benedict W. J. Irwin, May 27 2016

MATHEMATICA

Table[(-1)^n HypergeometricPFQ[{10, -n}, {}, 1], {n, 0, 20}] (* Benedict W. J. Irwin, May 27 2016 *)

STATUS

approved

editing

#11 by N. J. A. Sloane at Fri Mar 27 23:11:20 EDT 2015
STATUS

proposed

approved

#10 by Jon E. Schoenfield at Fri Mar 27 22:17:01 EDT 2015
STATUS

editing

proposed

#9 by Jon E. Schoenfield at Fri Mar 27 22:16:59 EDT 2015
CROSSREFS

Cf. A176734 (necklaces and k=8 cords).

STATUS

proposed

editing

#8 by Jon E. Schoenfield at Fri Mar 27 22:14:45 EDT 2015
STATUS

editing

proposed

#7 by Jon E. Schoenfield at Fri Mar 27 22:14:42 EDT 2015
COMMENTS

a(n) enumerates the possibilities to distribute for distributing n beads, n>=1, labeled differently from 1 to n, over a set of (unordered) necklaces, excluding necklaces with exactly one bead, and k=9 indistinguishable, ordered, fixed cords, each allowed to have any number of beads. Beadless necklaces as well as a beadless cords contributes contribute a factor 1 in the counting, e.g., a(0):= 1*1 =1. See A000255 for the description of a fixed cord with beads. This produces for a(n) the exponential (aka binomial) convolution of the subfactorial sequence {A000166(n)} and the sequence {A049389(n) = (n+8)!/8!}. See the necklaces and cords problem comment in A000153. Therefore the recurrence with inputs holds. This comment derives from a family of recurrences found by Malin Sjodahl for a combinatorial problem for certain quark and gluon diagrams ( Febr Feb 27 2010).

EXAMPLE

Necklaces and 9 cords problem. For n=4 one considers the following weak 2 -part compositions of 4: (4,0), (3,1), (2,2), and (0,4), where (1,3) does not appear because there are no necklaces with 1 bead. These compositions contribute respectively !4*1,binomial(4,3)*!3*c9(1), (binomial(4,2)*! 2)*c9(2), and 1*c9(4) with the subfactorials !n:=A000166(n) (see the necklace comment there) and the c9(n):=A049389(n) numbers for the pure 9 -cord problem (see the remark on the e.g.f. for the k cords -cord problem in A000153; here for k=9: 1/(1-x)^9). This adds up as 9 + 4*2*9 + (6*1)*90 + 11880 = 12501 = a(4).

STATUS

approved

editing

#6 by Charles R Greathouse IV at Thu Nov 21 12:50:03 EST 2013
MATHEMATICA

RecurrenceTable[{a[0]==1, a[1]==9, a[n]==(n+8)a[n-1]+(n-1)a[n-2]}, a[n], {n, 20}] (* From _Harvey P. Dale, _, Oct 20 2011 *)

Discussion
Thu Nov 21
12:50
OEIS Server: https://oeis.org/edit/global/2062