login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A357286
a(n) = (1/8)*A357285.
1
0, 0, 0, 0, 0, 0, 0, 1, 4, 13, 38, 99, 240, 565, 1274, 2799, 6052, 12857, 26958, 56099, 115704, 237133, 484002, 983543, 1992012, 4026017, 8118262, 16342347, 32860832, 65998837, 132437322, 265603743, 532348916, 1066505545, 2135992990, 4276649971, 8560661832
OFFSET
0,9
FORMULA
a(n) = 4*a(n-1) - 3*a(n-2) - 6*a(n-3) + 10*a(n-4) - 4*a(n-5).
G.f.: -(x^7/((-1 + x)^2 (-1 + 2 x) (-1 + 2 x^2) (-1 + 4 x^3))).
MATHEMATICA
s[n_] := s[n] = Select[Subsets[Range[n]], Length[#] >= 3 &];
a[n_] := Select[s[n], #[[1]] + #[[2]] + #[[3]] < #[[-1]] &]
(1/8)*Table[Length[a[n]], {n, 0, 18}]
CROSSREFS
Cf. A357285.
Sequence in context: A024450 A047094 A145128 * A277974 A089092 A181527
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Oct 02 2022
STATUS
approved