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!)
A299964 Integers represented in more than one way by a cyclotomic binary form f(x,y) where x and y are prime numbers and 0 < y < x. 8

%I #8 Apr 06 2024 14:57:32

%S 19,39,97,147,247,259,327,399,410,427,481,650,777,890,903,1010,1027,

%T 1130,1209,1267,1443,1490,1533,1677,1730,1767,1802,1813,1898,1911,

%U 1970,2037,2119,2210,2330,2378,2667,2793,2847,3050,3170,3297,3367,3477,3530,3603

%N Integers represented in more than one way by a cyclotomic binary form f(x,y) where x and y are prime numbers and 0 < y < x.

%C A cyclotomic binary form over Z is a homogeneous polynomial in two variables which has the form f(x, y) = y^EulerPhi(k)*CyclotomicPolynomial(k, x/y) where k is some integer >= 3. An integer n is in this sequence if f(x,y) = n has more than one integer solution where f is a cyclotomic binary form and x and y are prime numbers with 0 < y < x.

%H Étienne Fouvry, Claude Levesque, Michel Waldschmidt, <a href="https://arxiv.org/abs/1712.09019">Representation of integers by cyclotomic binary forms</a>, arXiv:1712.09019 [math.NT], 2017.

%o (Julia)

%o function countA299928(n)

%o R, z = PolynomialRing(ZZ, "z")

%o K = Int(floor(5.383*log(n)^1.161)) # Bounds from

%o M = Int(floor(2*sqrt(n/3))) # Fouvry & Levesque & Waldschmidt

%o N = QQ(n); count = 0

%o P(u) = (p for p in u:M if isprime(ZZ(p)))

%o for k in 3:K

%o e = Int(eulerphi(ZZ(k)))

%o c = cyclotomic(k, z)

%o for y in P(2), x in P(y+1)

%o if N == y^e*subst(c, QQ(x, y))

%o count += 1

%o end end end

%o return count

%o end

%o A299964list(upto) = [n for n in 1:upto if countA299928(n) > 1]

%o println(A299964list(3640))

%Y Cf. A293654, A296095, A299214, A299498, A299733, A299928, A299929, A299930, A299956.

%K nonn

%O 1,1

%A _Peter Luschny_, Feb 25 2018

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 09:42 EDT 2024. Contains 371935 sequences. (Running on oeis4.)