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!)
A278914 a(n) is the smallest odd number k with prime sum of divisors such that tau(k) = n-th prime. 3
9, 2401, 729, 9765625, 531441, 45949729863572161, 5559917313492231481, 1471383076677527699142172838322885948765175969, 10264895304762966931257013446474591264089923314972889033759201, 230466617897195215045509519405933293401 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
tau(n) = A000005(n) = the number of divisors of n.
For n >= 7; a(n) > A023194(10000) = 5896704025969.
LINKS
Robert G. Wilson v, Table of n, a(n) for n = 2..66 (first 49 terms from Davin Park)
FORMULA
a(n) = A101636(n)^(prime(n)-1). - Davin Park, Dec 10 2016
EXAMPLE
a(2) = 9 because 9 is the smallest odd number with prime values of sum of divisors (sigma(9) = 13) such that tau(9) = 3 = 2nd prime.
MATHEMATICA
A278914[n_] := NestWhile[NextPrime, 3, ! PrimeQ[Cyclotomic[Prime[n], #]] &]^(Prime[n] - 1); Array[A278914, 10, 2] (* Davin Park, Dec 28 2016 *)
PROG
(Magma) A278914:=func<n|exists(r){k:k in[1..10000000] | IsOdd(k) and IsPrime(SumOfDivisors(k)) and NumberOfDivisors(k) eq NthPrime(n)} select r else 0>; [A278914(n): n in[2..6]]
(PARI) a(n) = {my(k=1); while(! (isprime(sigma(k)) && isprime(p=numdiv(k)) && (primepi(p) == n)), k+=2); k; } \\ Michel Marcus, Dec 03 2016
CROSSREFS
Sequence in context: A013827 A058428 A323517 * A069704 A033997 A068729
KEYWORD
nonn,more
AUTHOR
Jaroslav Krizek, Nov 30 2016
EXTENSIONS
More terms from Davin Park, Dec 11 2016
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 20 00:03 EDT 2024. Contains 371798 sequences. (Running on oeis4.)