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!)
A306666 Positive integers x such that x*(7-5*x+x^2)*(6-4*x+x^2) is a square. 0
1, 2, 3, 7, 21 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
No other terms below 10^6.
No other terms below 10^10. - Chai Wah Wu, Nov 24 2019
LINKS
MATHEMATICA
Select[Range[1000], IntegerQ[Sqrt[#*(7 - 5*# + #^2)*(6 - 4*# + #^2)]] &] (* Vaclav Kotesovec, Mar 10 2019 *)
PROG
(PARI) isok(x)=issquare(x*(7-5*x+x^2)*(6-4*x+x^2));
(Python)
from sympy.ntheory.primetest import is_square
A306666_list = [n for n in range(1, 10**3) if is_square(n*(n*(n*(n*(n - 9) + 33) - 58) + 42))] # Chai Wah Wu, Nov 24 2019
CROSSREFS
Sequence in context: A222890 A011968 A080021 * A032313 A032223 A002863
KEYWORD
nonn,more
AUTHOR
Dmitry Ezhov, Mar 04 2019
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 24 11:49 EDT 2024. Contains 371936 sequences. (Running on oeis4.)