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!)
A086150 Number of permutations of decimal digits of n which yield nonprime numbers. 2
1, 0, 0, 1, 0, 1, 0, 1, 1, 2, 0, 2, 0, 1, 2, 1, 0, 2, 1, 1, 2, 1, 1, 2, 2, 2, 2, 2, 1, 1, 0, 1, 1, 1, 1, 2, 0, 1, 2, 2, 1, 2, 1, 1, 2, 2, 1, 2, 2, 1, 2, 2, 1, 2, 1, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 1, 1, 2, 2, 1, 0, 2, 0, 1, 2, 1, 1, 2, 0, 2, 2, 2, 1, 2, 2, 2, 2, 1, 1, 2, 1, 1, 2, 2, 1, 2, 0, 1, 1, 3, 1, 6, 3, 4, 6 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,10
COMMENTS
From Robert Israel, Aug 13 2017: (Start)
Leading zeros are allowed.
a(n) = 0 for n in A003459. (End)
LINKS
FORMULA
a(n) + A039999(n) = A047726(n). - Robert Israel, Aug 13 2017
EXAMPLE
n=117, digit-permutations={117,171,711} are all composites, so a(117)=3.
MAPLE
f:= proc(L) option remember;
nops(remove(isprime, map(t -> add(t[i]*10^(i-1), i=1..nops(t)), combinat:-permute(L))))
end proc:
seq(f(sort(convert(n, base, 10))), n=1..200); # Robert Israel, Aug 13 2017
MATHEMATICA
nd[x_, y_] := 10*x+y tn[x_] := Fold[nd, 0, x] Table[Count[Table[PrimeQ[tn[Part[Permutations[ IntegerDigits[w]], j]]], {j, 1, Length[Permutations[ IntegerDigits[w]]]}], False], {w, 1, 128}]
Table[Count[FromDigits/@Permutations[IntegerDigits[n]], _?(!PrimeQ[#]&)], {n, 110}] (* Harvey P. Dale, Dec 24 2016 *)
CROSSREFS
Sequence in context: A218907 A192575 A029401 * A105166 A321299 A105783
KEYWORD
base,nonn
AUTHOR
Labos Elemer, Aug 04 2003
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 08:33 EDT 2024. Contains 371905 sequences. (Running on oeis4.)