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!)
A303048 Number of total dominating sets in the n-triangular (Johnson) graph. 4
0, 4, 54, 918, 31232, 2059624, 266734812, 68574627036, 35160753222400, 36021330363615408, 73782362964470935112, 302225854825997535378632, 2475866675779140063716682240, 40564755806137338166417907530592, 1329227401912999475682655581004557840 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
LINKS
Eric Weisstein's World of Mathematics, Johnson Graph
Eric Weisstein's World of Mathematics, Total Dominating Set
Eric Weisstein's World of Mathematics, Triangular Graph
FORMULA
a(n) = Sum_{k=0..floor(n/2)} (-1)^k*binomial(n,2*k)*(2*k-1)!!*A290847(n-2*k). - Andrew Howroyd, Apr 20 2018
MATHEMATICA
b[n_] := Sum[(-1)^(n - k) Binomial[n, k] 2^Binomial[k, 2], {k, 0, n}]
Table[Sum[(-1)^k Binomial[n, 2 k] (2 k)!/(2^k k!) (b[n - 2 k] + (n - 2 k) b[n - 2 k - 1]), {k, 0, Floor[n/2]}], {n, 2, 20}]
PROG
(PARI) \\ here b(n) is A006129
b(n)=sum(k=0, n, (-1)^(n-k)*binomial(n, k)*2^binomial(k, 2));
a(n)=sum(k=0, n\2, (-1)^k*binomial(n, 2*k)*(2*k)!/(2^k*k!)*(b(n-2*k) + (n-2*k)*b(n-2*k-1))); \\ Andrew Howroyd, Apr 20 2018
CROSSREFS
Sequence in context: A055774 A071248 A221611 * A304556 A127833 A346291
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Apr 17 2018
EXTENSIONS
a(8)-a(16) from Andrew Howroyd, Apr 20 2018
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 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)