login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A131313 Number of labeled 4-arch graphs on n nodes. 0
0, 0, 0, 1, 1, 15, 1085, 216230, 92550276, 74358276300 (list; graph; refs; listen; history; internal format)
OFFSET

1,6

LINKS

Saverio Caminiti and Emanuele G. Fusco, On the Number of Labeled k-arch Graphs, Journal of Integer Sequences, Vol 10 (2007), Article 07.7.5

FORMULA

The number of labeled 4-arch graps with n>5 nodes is given by f(n,4,n-4-1,0,4) where f is the recursive function described by the pari-gp code attached below.

PROG

(PARI) f(n, k, i, u, j)={ local(s=0); if (i==1, binomial(n-u, j)*binomial(u, k-j), for (c=0, min(k, n-(i-1)-(u+j)), s+=f(n, k, i-1, u+j, c) ); binomial(n-u, j)*binomial(u, k-j)*s ) }

CROSSREFS

Cf. A098721-A098724, A131311-A131315.

Sequence in context: A205602 A206162 A203409 * A129764 A027552 A098210

Adjacent sequences:  A131310 A131311 A131312 * A131314 A131315 A131316

KEYWORD

nonn

AUTHOR

Saverio Caminiti and Emanuele G. Fusco (fusco(AT)di.uniroma1.it), Sep 18 2007

EXTENSIONS

Edited by N. J. A. Sloane (njas(AT)research.att.com), Oct 02 2007

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 13 20:26 EST 2012. Contains 205553 sequences.