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!)
A257417 Values of n such that there are exactly 10 solutions to x^2 - y^2 = n with x > y >= 0. 10
960, 1344, 1728, 2112, 2240, 2496, 2592, 2835, 3240, 3264, 3520, 3648, 4160, 4416, 4455, 4536, 4928, 5265, 5440, 5568, 5824, 5952, 6080, 6144, 6237, 6885, 7104, 7128, 7360, 7371, 7616, 7695, 7872, 8000, 8256, 8424, 8512, 9024, 9152, 9280, 9315, 9639, 9920 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
David A. Corneth, Table of n, a(n) for n = 1..10000 (first 200 terms from Colin Barker)
EXAMPLE
960 is in the sequence because there are 10 solutions to x^2 - y^2 = 960, namely (x,y) = (31,1), (32,8), (34,14), (38,22), (46,34), (53,43), (64,56), (83,77), (122,118), (241,239).
MATHEMATICA
nn = 10000;
t = Table[0, {nn}];
Do[n = x^2 - y^2; If[n <= nn, t[[n]]++], {x, nn}, {y, 0, x - 1}];
Position[t, 10] // Flatten (* Jean-François Alcover, Jun 18 2020, after T. D. Noe in A034178 *)
PROG
(PARI) is_A257417(n)={A034178(n)==10} \\ M. F. Hasler, Apr 22 2015
CROSSREFS
Cf. A034178.
Sequence in context: A108903 A167780 A316338 * A137491 A179672 A348523
KEYWORD
nonn
AUTHOR
Colin Barker, Apr 22 2015
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 25 09:33 EDT 2024. Contains 371967 sequences. (Running on oeis4.)