The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A290709 Number of irredundant sets in the complete tripartite graph K_{n,n,n}. 1
4, 22, 49, 94, 169, 298, 529, 958, 1777, 3370, 6505, 12718, 25081, 49738, 98977, 197374, 394081, 787402, 1573945, 3146926, 6292777, 12584362, 25167409, 50333374, 100665169, 201328618, 402655369, 805308718, 1610615257, 3221228170, 6442453825, 12884904958 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
When n > 1, the nonempty irredundant sets are those consisting of either any number of vertices from a single partition or otherwise exactly two vertices from different partitions. - Andrew Howroyd, Aug 10 2017
LINKS
Eric Weisstein's World of Mathematics, Complete Tripartite Graph
Eric Weisstein's World of Mathematics, Irredundant Set
FORMULA
a(n) = 3*(2^n + n^2) - 2 for n > 1. - Andrew Howroyd, Aug 10 2017
a(n) = 5*a(n-1) - 9*a(n-2) + 7*a(n-3) - 2*a(n-4) for n > 5.
G.f.: (x (4 + 2 x - 25 x^2 + 19 x^3 - 6 x^4))/((-1 + x)^3 (-1 + 2 x)).
MATHEMATICA
Table[If[n == 1, 4, 3 (2^n + n^2) - 2], {n, 20}]
Join[{4}, LinearRecurrence[{5, -9, 7, -2}, {22, 49, 94, 169}, 20]]
CoefficientList[Series[(4 + 2 x - 25 x^2 + 19 x^3 - 6 x^4)/((-1 + x)^3 (-1 + 2 x)), {x, 0, 20}], x]
PROG
(PARI) a(n) = if(n==1, 4, 3*(2^n + n^2) - 2); \\ Andrew Howroyd, Aug 10 2017
CROSSREFS
Cf. A290707.
Sequence in context: A326737 A297434 A020173 * A163433 A187930 A022603
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, Aug 09 2017
EXTENSIONS
a(7)-a(32) from Andrew Howroyd, Aug 10 2017
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 May 15 04:25 EDT 2024. Contains 372536 sequences. (Running on oeis4.)