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!)
A283549 Composite numbers k such that tau(k^(k-1)) is a prime. 1
4, 9, 16, 27, 49, 64, 121, 125, 169, 289, 1681, 1849, 2401, 3481, 4913, 5329, 11881, 12769, 16129, 18769, 24649, 29791, 32041, 32761, 38809, 39601, 44521, 63001, 69169, 76729, 78125, 79507, 85849, 96721, 124609, 130321, 134689, 143641, 167281, 175561, 187489, 237169, 316969, 326041, 332929, 380689, 383161, 434281, 491401 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A proper subset of A280257 and of A025475.
LINKS
MATHEMATICA
k = 1; lst = {}; While[k < 100001, If [ !PrimeQ@ k && PrimeQ[ DivisorSigma[0, k^(k -1)]], AppendTo[lst, k]]; k++]; lst (* or *)
mx = 10^6; Union@ Flatten@ Reap[ Do[ Sow@ Select[ Prime[ Range[ PrimePi[ mx^(1/e) ]]]^e, PrimeQ[1 + e (#-1)] &], {e, 2, Log2[mx]}]][[2, 1]] (* Giovanni Resta, Mar 10 2017 *)
PROG
(PARI) is(n)=!isprime(n) && ispseudoprime(numdiv(n^(n-1))) \\ Charles R Greathouse IV, Mar 10 2017
CROSSREFS
Sequence in context: A301198 A009862 A132074 * A137354 A113495 A110997
KEYWORD
nonn
AUTHOR
Robert G. Wilson v, Mar 10 2017
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 25 07:41 EDT 2024. Contains 371964 sequences. (Running on oeis4.)