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!)
A177349 Primes p for which no m! has a prime power factorization of the form 2^p*...*p^1*... 7
2, 5, 13, 17, 29, 37, 43, 59, 61, 83, 103, 107, 139, 151, 157, 163, 167, 179, 199, 211, 223, 227, 233, 241, 251, 257, 269, 283, 307, 313, 317, 331, 347, 373, 379, 409, 419, 433, 443, 457, 503, 509, 523, 541, 547, 563, 569, 571, 587, 601, 607, 617, 619, 643 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
One can prove that for p>=5 the number of such m is 0 or 2.
LINKS
Vladimir Shevelev, Compact integers and factorials, Acta Arithmetica 126 (2007) 195-236.
EXAMPLE
p=109 is not in the sequence because for m=112 we have 112! = 2^109*3^54*...*109 which is of the form 2^p*...*p*.. [R. J. Mathar, Oct 29 2010]
MAPLE
isA177349 := proc(p) if isprime(p) then pid := numtheory[pi](p) ; for m from 1 do h2 := A115627(m, 1) ; if h2 > p then return true; elif h2 = p then if A115627(m, pid) = 1 then return false; end if; end if; end do; else false; fi ; end proc:
for i from 1 to 120 do p := ithprime(i) ; if isA177349(p) then printf("%d, ", p); end if; end do: # R. J. Mathar, Oct 29 2010
MATHEMATICA
c[n_, p_] := Sum[IntegerExponent[k, p], {k, 2, n}]; m = 120; v = Table[0, {m}]; s = 0; n = 2; While[s <= Prime[m], s += IntegerExponent[n, 2]; If[ PrimeQ[s] && (i = PrimePi[s]) <= m && c[n, s] == 1, v[[i]] = 1]; n++]; t = Prime /@ (Position[v, _?(# == 0 &)] // Flatten); t (* Amiram Eldar, Sep 13 2019 *)
CROSSREFS
Cf. A000142.
Sequence in context: A182198 A291275 A291278 * A160215 A068486 A099332
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, May 07 2010
EXTENSIONS
2 added, 109 replaced by 107, sequence extended beyond 199 by R. J. Mathar, Oct 29 2010
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 19 16:52 EDT 2024. Contains 371794 sequences. (Running on oeis4.)