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!)
A223707 Conjectured least number k such that prime(n) is the largest divisor of k^3 + 1, or 0 if there is no such k. 6

%I #3 Apr 03 2013 22:52:22

%S 1,2,0,3,0,4,0,8,0,0,6,11,122,7,0,582,0,14,30,212,9,24,82,88,36,1817,

%T 47,0,46,677,20,654,136,43,2383,33,13,59,166,1037,210682,49,381,85,

%U 23245,93,15,40,18613,95,5591,1433,16,0,1798,788,26361,29,117,842

%N Conjectured least number k such that prime(n) is the largest divisor of k^3 + 1, or 0 if there is no such k.

%C We allowed k to vary up to 10^7.

%t nn = 60; t = Table[0, {nn}]; ps = Prime[Range[nn]]; Do[num = n^3 + 1; j = 0; lastP = 0; While[num > 0 && j < nn, j++; p = ps[[j]]; While[Mod[num, p] == 0, lastP = j; num = num/p]];If[num == 1 && t[[lastP]] == 0, t[[lastP]] = n; Print[{lastP, n}]], {n, 10^7}]; t

%Y Cf. A223701-A223706 (related sequences).

%K nonn

%O 1,2

%A _T. D. Noe_, Apr 03 2013

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 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)