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!)
A003698 Number of 2-factors in C_4 X P_n. 1
1, 9, 53, 341, 2169, 13825, 88093, 561357, 3577121, 22794425, 145252485, 925589701, 5898117961, 37584466929, 239498796653, 1526153708861, 9725080775409, 61970950592425, 394896331045333, 2516390514947637 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
F. Faase, On the number of specific spanning subgraphs of the graphs G X P_n, Ars Combin. 49 (1998), 129-154.
LINKS
F. Faase, On the number of specific spanning subgraphs of the graphs G X P_n, Preliminary version of paper that appeared in Ars Combin. 49 (1998), 129-154.
FORMULA
a(n) = 6*a(n-1) + 3*a(n-2) - 4*a(n-3), n>3.
G.f.: x*(1-x)*(1+4*x)/((1+x)*(1-7*x+4*x^2)). - Colin Barker, Aug 30 2012
MAPLE
seq( simplify( (-1)^n + 2^n*Chebyshev(n, 7/4) - 2^(n+1)*ChebyshevU(n-1, 7/4))/2 ), n=1..30); # G. C. Greubel, Dec 24 2019
MATHEMATICA
Rest@CoefficientList[Series[x*(1-x)*(1+4*x)/((1+x)*(1-7*x+4*x^2)), {x, 0, 30}], x] (* Vincenzo Librandi, Oct 13 2013 *)
Table[((-1)^n + 2^n*ChebyshevU[n, 7/4] - 2^(n+1)*ChebyshevU[n-1, 7/4])/2, {n, 30}] (* G. C. Greubel, Dec 24 2019 *)
PROG
(PARI) vector(30, n, ((-1)^n + 2^n*polchebyshev(n, 2, 7/4) - 2^(n+1)*polchebyshev(n-1, 2, 7/4))/2 ) \\ G. C. Greubel, Dec 24 2019
(Magma) I:=[1, 9, 53]; [n le 3 select I[n] else 6*Self(n-1) +3*Self(n-2) -4*Self(n-3): n in [1..20]]; // G. C. Greubel, Dec 24 2019
(Sage) [((-1)^n + 2^n*chebyshev_U(n, 7/4) - 2^(n+1)*chebyshev_U(n-1, 7/4))/2 for n in (1..30)] # G. C. Greubel, Dec 24 2019
(GAP) a:=[1, 9, 53];; for n in [4..30] do a[n]:=6*a[n-1]+3*a[n-2]-4*a[n-3]; od; a; # G. C. Greubel, Dec 24 2019
CROSSREFS
Cf. A190973.
Sequence in context: A295203 A334977 A038761 * A001688 A144040 A336184
KEYWORD
nonn,easy
AUTHOR
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 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)