The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A350179 Primes of the form ( A349309(n) + 1 ) ^ (1/3). 0
2, 3, 5, 7, 11, 13, 23, 29, 31, 43, 47, 53, 59, 61, 67, 71, 79, 83, 101, 103, 107, 131, 139, 149, 151, 157, 167, 173, 179, 191, 197, 211, 223, 227, 229, 239, 263, 269, 277, 283, 293, 311, 317, 331, 347, 349, 359, 367, 373, 383, 389, 419, 421, 431, 439, 443, 461, 463, 467 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Equivalently, primes p such that A051903(p^3-1) < 3. - Amiram Eldar, Dec 26 2021
LINKS
EXAMPLE
5 is a term since (A349309(3) + 1) ^ (1/3) = 125 ^ (1/3) = 5.
MAPLE
filter:= n -> isprime(n) and max(map(t -> t[2], ifactors(n^3-1)[2]))<3:
select(filter, [2, seq(i, i=3..1000, 2)]); # Robert Israel, Dec 26 2021
MATHEMATICA
q[p_] := PrimeQ[p] && AllTrue[FactorInteger[p^3 - 1][[;; , 2]], # < 3 &]; Select[Range[500], q] (* Amiram Eldar, Dec 26 2021 *)
PROG
(Python)
from itertools import count, islice
from sympy import prime, factorint
def A350179_gen(): return (p for p in (prime(n) for n in count(1)) if max(factorint(p**3-1).values()) < 3)
A350179_list = list(islice(A350179_gen(), 30)) # Chai Wah Wu, Jan 24 2022
(PARI) isok(p) = isprime(p) && (vecmax(factor(p^3-1)[, 2]) < 3); \\ Michel Marcus, Jul 18 2022
CROSSREFS
Sequence in context: A181172 A075430 A095080 * A229289 A087634 A360932
KEYWORD
nonn
AUTHOR
EXTENSIONS
More terms from Michel Marcus, Dec 25 2021
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 May 14 14:46 EDT 2024. Contains 372533 sequences. (Running on oeis4.)