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!)
A325870 Primes represented by non-quadratic cyclotomic binary forms. 1
11, 13, 17, 31, 43, 61, 73, 97, 127, 151, 181, 193, 211, 241, 257, 331, 337, 421, 461, 463, 521, 541, 547, 577, 601, 641, 683, 757, 881, 991, 1009, 1021, 1031, 1093, 1297, 1621, 1801, 1871, 1873, 1933, 2221, 2417, 2657, 2731, 2801, 3001, 3121, 3361, 3571, 3697 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Étienne Fouvry, Claude Levesque, and Michel Waldschmidt, Representation of integers by cyclotomic binary forms, arXiv:1712.09019 [math.NT], 2017 and Acta Arithmetica, online 15 March 2018.
PROG
(PARI)
isA325870(n) =
{
my(K, M, phi);
K = floor(5.383*log(n)^1.161);
M = floor(2*sqrt(n/3));
for(k = 3, K,
phi = eulerphi(k);
if(phi >= 4,
for(y = 1, M,
for(x = y + 1, M,
if(n == y^phi*polcyclo(k, x/y),
return(1)
)))));
return(0)
}
CROSSREFS
Sequence in context: A240570 A354524 A162237 * A090236 A240623 A240624
KEYWORD
nonn,changed
AUTHOR
Peter Luschny, May 26 2019
EXTENSIONS
At the suggestion of Michel Waldschmidt
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)