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!)
A090526 Primes arising in A090525, or 0 if A090525(n) = 0. 4
2, 13, 23, 347, 4241, 41177, 1677721, 9224297, 769230769, 17831979413, 156422814881, 43267872370321, 317485909301657, 10680338789777057, 348051774975651917, 23635436053895336119, 230095953656704898101 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,1
COMMENTS
Conjecture: No term is zero.
Conjecture is true: see A090525. - Robert Israel, Mar 02 2023
LINKS
FORMULA
a(n) = floor(n^n/A090525(n)). - Robert Israel, Mar 02 2023
MAPLE
f:= proc(n) local t, k, s;
t:= n^n;
for k from 2 do s:= floor(t/k); if isprime(s) then return s fi od
end proc:
map(f, [$2..100]); # Robert Israel, Mar 02 2023
MATHEMATICA
Do[p = n^n; i = 2; While[ !PrimeQ[Floor[p/i]], i++ ]; Print[Floor[p/i]], {n, 2, 30}] (* Ryan Propper, Aug 02 2005 *)
CROSSREFS
Sequence in context: A029971 A243619 A243620 * A362433 A284516 A284651
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Dec 07 2003
EXTENSIONS
More terms from Ryan Propper, Aug 02 2005
Offset corrected by Robert Israel, Mar 02 2023
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 24 17:29 EDT 2024. Contains 371962 sequences. (Running on oeis4.)