login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A278427 Triangle read by rows: CU(n,k) is the number of unlabeled subgraphs with k edges of the n-cycle C_n. 3
1, 1, 1, 2, 1, 1, 3, 2, 1, 1, 4, 3, 3, 1, 1, 5, 4, 5, 3, 1, 1, 6, 5, 7, 6, 4, 1, 1, 7, 6, 9, 9, 8, 4, 1, 1, 8, 7, 11, 12, 13, 9, 5, 1, 1, 9, 8, 13, 15, 18, 15, 12, 5, 1, 1, 10, 9, 15, 18, 23, 22, 21, 13, 6, 1, 1, 11, 10, 17, 21, 28, 29, 31, 24, 16, 6, 1, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
T(n,n) = 1; T(n,k) = Sum_{i=k+1..n} A008284(i, i-k) for k < n. - Andrew Howroyd, Sep 26 2019
EXAMPLE
For row n = 3 of the triangle below: there are 3 unlabeled subgraphs of the triangle C_3 with 0 edges, 2 with 1 edge, 1 with 2 edges, and 1 with 3 edges (C_3 itself).
Triangle begins:
1;
1, 1;
2, 1, 1;
3, 2, 1, 1;
4, 3, 3, 1, 1;
5, 4, 5, 3, 1, 1;
6, 5, 7, 6, 4, 1, 1;
7, 6, 9, 9, 8, 4, 1, 1;
8, 7, 11, 12, 13, 9, 5, 1, 1;
9, 8, 13, 15, 18, 15, 12, 5, 1, 1;
10, 9, 15, 18, 23, 22, 21, 13, 6, 1, 1;
...
PROG
(PARI) \\ here P is A008284 as vector of vectors.
P(n)={[Vecrev(p/y) | p<-Vec(-1 + 1/prod(k=1, n, 1 - y*x^k + O(x*x^n)))]}
T(n)={my(p=P(n-1)); matrix(n, n, n, k, if(k>=n, k==n, sum(i=k, n-1, p[i][i-k+1])))}
{ my(A=T(12)); for(n=1, #A, print(A[n, 1..n])) } \\ Andrew Howroyd, Sep 26 2019
CROSSREFS
Cf. A008284.
Rows sums give A000070.
Middle diagonal gives A058397.
Sequence in context: A193592 A243714 A343656 * A077592 A343658 A194005
KEYWORD
nonn,tabl
AUTHOR
John P. McSorley, Nov 21 2016
EXTENSIONS
Offset corrected and terms a(66) and beyond from Andrew Howroyd, Sep 26 2019
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)