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”).

A309185
(1/6) times the number of n-member subsets of [6n] whose elements sum to a multiple of n.
2
1, 5, 46, 445, 4751, 54086, 642342, 7861661, 98480332, 1256564755, 16273981758, 213378975958, 2826867619109, 37782552518478, 508840821830546, 6898459216311581, 94070535317459018, 1289430373107971804, 17755914760643605782, 245518560760433579195
OFFSET
1,2
COMMENTS
Also (1/5) times the number of n-member subsets of [6n-1] whose elements sum to a multiple of n.
LINKS
FORMULA
a(n) = 1/(6n) * Sum_{d|n} binomial(6d,d)*(-1)^(n+d)*phi(n/d).
MAPLE
with(numtheory):
a:= n-> add(binomial(6*d, d)*(-1)^(n+d)*
phi(n/d), d in divisors(n))/(6*n):
seq(a(n), n=1..25);
CROSSREFS
Column k=6 of A309148.
Sequence in context: A096947 A042533 A355056 * A169963 A371744 A198256
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jul 15 2019
STATUS
approved