Logo

Greetings from The On-Line Encyclopedia of Integer Sequences!

Hints

Search: id:A144161
Displaying 1-1 of 1 results found. page 1
     Format: long | short | internal | text      Sort: relevance | references | number      Highlight: on | off
A144161 Triangle read by rows: T(n,k) = number of simple graphs on n labeled nodes with k edges that are node-disjoint unions of undirected cycle subgraphs. +0
4
1, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 4, 3, 1, 0, 0, 10, 15, 12, 1, 0, 0, 20, 45, 72, 70, 1, 0, 0, 35, 105, 252, 490, 465, 1, 0, 0, 56, 210, 672, 1960, 3720, 3507, 1, 0, 0, 84, 378, 1512, 5880, 16740, 31563, 30016, 1, 0, 0, 120, 630, 3024, 14700, 55800, 157815, 300160 (list; table; graph; listen)
OFFSET

0,14

FORMULA

T(n,0)=1, T(n,k)=0 if k<0 or n<k, else T(n,k) = T(n-1,k) + 1/2 * Sum{j=2..k} T(n-1-j,k-j-1) * Product{i=1..j} (n-i).

EXAMPLE

T(4,3)=4, because there are 4 simple graphs with 3 edges that are node-disjoint unions of undirected cycle subgraphs:

.1.2. .1.2. .1-2. .1-2.

../|. .|\.. ..\|. .|/..

.3-4. .3-4. .3.4. .3.4.

T(6,6)=C(6,3)/2+5!/2=70.

Triangle begins:

1

1, 0

1, 0, 0

1, 0, 0, 1

1, 0, 0, 4, 3

1, 0, 0, 10, 15, 12

1, 0, 0, 20, 45, 72, 70

MAPLE

T:= proc(n, k) option remember; local i, j; if k=0 then 1 elif k<0 or n<k then 0 else T(n-1, k) +add (mul (n-i, i=1..j) *T(n-1-j, k-j-1), j=2..k)/2 fi end: seq (seq (T(n, k), k=0..n), n=0..12);

CROSSREFS

Columns 0, 1+2, 3-4 give: A000012, A000004, A000292, A050534. Diagonal gives: A001205. Row sums give: A108246. Cf. A007318, A000142.

Sequence in context: A136160 A120362 A010102 this_sequence A054669 A131027 A133475

Adjacent sequences: A144158 A144159 A144160 this_sequence A144162 A144163 A144164

KEYWORD

nonn,tabl

AUTHOR

Alois P. Heinz (heinz(AT)hs-heilbronn.de), Sep 12 2008

page 1

Search completed in 0.002 seconds

Lookup | Welcome | Find friends | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
More pages | Superseeker | Maintained by N. J. A. Sloane (njas@research.att.com)

Last modified December 18 21:37 EST 2009. Contains 171024 sequences.


AT&T Labs Research