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!)
A055098 Number of distinct anagrams of digits of n without leading zeros. 5
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 2, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,12
LINKS
FORMULA
a(n) = O(n/(log n)^(9/2)). - Charles R Greathouse IV, Aug 24 2022
EXAMPLE
a(101)=2 since the digits of 101 can be ordered 101 or 110 (but not 011).
MATHEMATICA
a[n_] := Length[ DeleteCases[ Permutations[ IntegerDigits[n]], {0 .., __}]]; Table[a[n], {n, 1, 102}] (* Jean-François Alcover, Nov 30 2011 *)
PROG
(Haskell)
import Data.List (permutations, nub)
a055098 n = length $ nub $ filter ((> '0') . head) $ permutations $ show n
-- Reinhard Zumkeller, Aug 14 2011
(PARI) a(n)={my(v=digits(n), f=vector(10), n=#v); for(i=1, #v, f[1+v[i]]++); (1 - f[1]/n) * n! / prod(i=1, #f, f[i]!)} \\ Andrew Howroyd, Jan 27 2020
(Python)
from math import factorial, prod
def a(n):
s = str(n); d, c = len(s), [s.count(str(i)) for i in range(10)]
return (d-c[0])*factorial(d-1)//prod(map(factorial, c))
print([a(n) for n in range(1, 50)]) # Michael S. Branicky, Aug 24 2022
CROSSREFS
Sequence in context: A138471 A102669 A248327 * A297035 A055178 A174847
KEYWORD
base,easy,nice,nonn
AUTHOR
Henry Bottomley, Apr 19 2000
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 August 12 13:41 EDT 2024. Contains 375113 sequences. (Running on oeis4.)