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!)
A000743 Number of compositions of n into 5 ordered relatively prime parts.
(Formerly M3852 N1577)
11
1, 5, 15, 35, 70, 125, 210, 325, 495, 700, 1000, 1330, 1820, 2305, 3060, 3750, 4830, 5775, 7315, 8490, 10625, 12155, 14880, 16835, 20475, 22620, 27405, 30100, 35750, 39100, 46360, 49655, 58905, 62985, 73320, 78340, 91390, 95720, 111930, 117425 (list; graph; refs; listen; history; text; internal format)
OFFSET
5,2
REFERENCES
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
N. J. A. Sloane, Transforms
FORMULA
Möbius transform of binomial(n-1, 4).
G.f.: Sum_{k>=1} mu(k) * x^(5*k) / (1 - x^k)^5. - Ilya Gutkovskiy, Feb 05 2020
MAPLE
with(numtheory):
a:= n-> add(mobius(n/d)*binomial(d-1, 4), d=divisors(n)):
seq(a(n), n=5..50); # Alois P. Heinz, Feb 05 2020
MATHEMATICA
a[n_] := Sum[Boole[Divisible[n, k]] MoebiusMu[n/k] Binomial[k - 1, 4], {k, 1, n}]; Table[a[n], {n, 5, 52}] (* Jean-François Alcover, Feb 11 2016 *)
PROG
(Magma) [&+[MoebiusMu(n div d)*Binomial(d-1, 4):d in Divisors(n)]:n in[5..44]]; // Marius A. Burtea, Feb 08 2020
CROSSREFS
Sequence in context: A000750 A289389 A008487 * A138779 A341184 A090580
KEYWORD
nonn
AUTHOR
EXTENSIONS
Offset changed to 5 by Ilya Gutkovskiy, Feb 05 2020
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 27 05:51 EDT 2024. Contains 372009 sequences. (Running on oeis4.)