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!)
A176584 Primes of the form p = k^3 + (largest square <= k^3). 3
2, 194057, 601067, 1607173, 3283993, 3630257, 3721363, 4918999, 5255713, 5848307, 6749569, 9999907, 17992913, 20432729, 23393483, 34746203, 44845993, 73843813, 84277273, 107165033, 109735649, 120469409, 125138873, 130898927 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Consider k = 4 * x^2 + 1, where the largest square <= k^3 is (8 * x^3 + 3 * x)^2. Bunyakowsky's conjecture implies there are infinitely many primes of the form (4 * x^2 + 1)^3 + (8 * x^3 + 3 * x)^2, and so that the sequence is infinite. The first term of this form is 93389778901 = a(165), corresponding to x = 30. - Robert Israel, Jan 10 2024
LINKS
MAPLE
g:= n -> n + floor(sqrt(n))^2:
select(isprime, map(g, [seq(i^3, i=1..1000)])); # Robert Israel, Jan 10 2024
MATHEMATICA
r[n_]:=n^3; f[n_]:=r[n]+Floor[Sqrt[r[n]]]^2; Select[Table[f[n], {n, 0, 6!}], PrimeQ[ # ]&]
PROG
(PARI) select(isprime, vector(1000, n, n^3+sqrtint(n^3)^2)) \\ Michel Marcus, Jan 10 2024
CROSSREFS
Primes in A176580.
Sequence in context: A271669 A006935 A070833 * A152475 A124362 A228001
KEYWORD
nonn
AUTHOR
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 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)