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!)
A305188 Numbers that are equal to a nontrivial multinomial coefficient (i.e., equal to k!/(k1!*...*km!) with k1 + ... + km = k, k-2 >= k1 >= ... >= km). 2
6, 10, 12, 15, 20, 21, 24, 28, 30, 35, 36, 42, 45, 55, 56, 60, 66, 70, 72, 78, 84, 90, 91, 105, 110, 120, 126, 132, 136, 140, 153, 156, 165, 168, 171, 180, 182, 190, 210, 220, 231, 240, 252, 253, 272, 276, 280, 286, 300, 306, 325, 330, 336, 342, 351, 360, 364 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
This sequence answers the following question: what numbers correspond to the number of permutations of a number of items that is lower than the number of permutations itself? It means that the underlying structure has some form of redundance / symmetry.
It can be shown that:
- no prime number is part of this sequence (see A304938)
- some nonprimes are not part of the sequence (beginning with 1, 4, 8, 9, 14, 16, 18, ...)
- any number that is a factorial of another integer e is part of this sequence (k=e, k1=ki=...=ke=1).
This sequence is a generalization of A006987.
From David A. Corneth, May 28 2018: (Start)
Also the numbers that are the number of permutations of either:
- sets of balls with two distinct colors of balls where each color occurs at least twice;
- sets of balls with at least three distinct colors of balls.
(End)
From Amiram Eldar, Jul 23 2020: (Start)
The asymptotic density of this sequence is 0 (Niven, 1951).
The number of terms not exceeding x is (1 + sqrt(2)) * x^(1/2) + o(x^(1/2)) (Erdős, 1954). (End)
LINKS
Vincent Champain, Python program for A305188
Paul Erdős, The Number of Multinomial Coefficients, The American Mathematical Monthly, Vol. 61, No. 1 (1954), pp. 37-39.
Ivan Niven, The asymptotic density of sequences, Bull. Amer. Math. Soc., Vol. 57 (1951), pp. 420-434. See theorem 2, p. 428.
EXAMPLE
a(1) = 6 because all numbers lower than 6 are either prime or a power of primes.
105 is a term of the sequence because 105 is equal to a multinomial coefficient: 105 = (4+2+1)! / (4! * 2! * 1!) and 105 is the number of ways 7 balls can be sorted where 4 are red, 2 are yellow and one is blue.
2016 is a term because 64! / (62! * 2!) = 2016. - David A. Corneth, May 29 2018
MATHEMATICA
mult[w_] := Total[w]!/Times @@ (w!); L = {}; Do[ t = mult /@ Select[ IntegerPartitions@ n, #[[1]] < n-1 &]; L = Union[L, Select[t, # <= 400 &]], {n, 3, 30}]; L (* Terms < 400, Giovanni Resta, May 27 2018 *)
PROG
(Python) # see link above
CROSSREFS
Sequence in context: A294278 A297366 A325472 * A359201 A270364 A359029
KEYWORD
nonn
AUTHOR
Vincent Champain, May 27 2018
EXTENSIONS
a(28)-a(57) from Giovanni Resta, May 27 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 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)