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!)
A318433 Number of n-element subsets of [5n] whose elements sum to a multiple of n. 4
1, 5, 20, 155, 1220, 10630, 98900, 960650, 9613700, 98462675, 1027222520, 10877596900, 116613287300, 1263159501180, 13803839298920, 152000845788280, 1684888825463940, 18785707522181965, 210536007879090140, 2370423142929112065, 26799168520704093720 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (-1)^n * (1/n) * Sum_{d|n} C(5d,d)*(-1)^d*phi(n/d) for n>0, a(0)=1.
MAPLE
with(numtheory); a := n -> `if`(n=0, 1, (-1)^n * 1/n * add(binomial(5*d, d)*(-1)^d*phi(n/d), d in divisors(n)));
PROG
(PARI) a(n) = if (n, (-1)^n * (1/n) * sumdiv(n, d, binomial(5*d, d)*(-1)^d*eulerphi(n/d)), 1); \\ Michel Marcus, Aug 27 2018
CROSSREFS
Column k=5 of A304482.
Sequence in context: A061964 A133667 A354848 * A205338 A197857 A197741
KEYWORD
nonn
AUTHOR
Marko Riedel, Aug 26 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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)