|
Search: id:A090956
|
|
|
| A090956 |
|
Numbers in increasing order such that successive sums are squares and successive differences are squarefree. |
|
+0 3
|
|
| 1, 3, 6, 19, 30, 51, 70, 99, 157, 167, 233, 343, 386, 455, 506, 583, 642, 727, 794, 887, 1138, 1671, 1693, 1788, 1933, 2036, 2453, 2731, 2745, 3031, 3053, 3508, 3717, 4027, 4073, 4391, 4825, 4976, 5225, 5384, 5641, 5808, 6073, 6471, 6754, 6935, 7226, 7903
(list; graph; listen)
|
|
|
OFFSET
|
0,2
|
|
|
COMMENT
|
a(n) > a(n-1), a(n) + a(n-1) is a square, a(n) - a(n-1) is square-free.
|
|
EXAMPLE
|
103 follows 93 as 103 - 93 = 10 is squarefree and 93 + 103 = 196 = 14^2.
|
|
MATHEMATICA
|
<<NumberTheory`; a = 1; Print[a]; Do[k = a + 1; While[ !(SquareFreeQ[k - a] && IntegerQ[Sqrt[k + a]]), k++ ]; a = k; Print[a], {n, 1, 100}] (Propper)
|
|
CROSSREFS
|
Cf. A090955.
Sequence in context: A057268 A085401 A085061 this_sequence A108972 A019097 A104264
Adjacent sequences: A090953 A090954 A090955 this_sequence A090957 A090958 A090959
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Dec 31 2003
|
|
EXTENSIONS
|
Corrected and extended by Ryan Propper (rpropper(AT)stanford.edu), Aug 27 2005
|
|
|
Search completed in 0.002 seconds
|