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!)
A237254 Values of x in the solutions to x^2 - 5xy + y^2 + 5 = 0, where 0 < x < y. 4
1, 2, 3, 9, 14, 43, 67, 206, 321, 987, 1538, 4729, 7369, 22658, 35307, 108561, 169166, 520147, 810523, 2492174, 3883449, 11940723, 18606722, 57211441, 89150161, 274116482, 427144083, 1313370969, 2046570254, 6292738363, 9805707187, 30150320846, 46981965681 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The corresponding values of y are given by a(n+2).
Also the solutions to 21x^2-20 is a perfect square. - Jaimal Ichharam, Jul 13 2014
LINKS
FORMULA
a(n) = 5*a(n-2)-a(n-4).
G.f.: -x*(x-1)*(x^2+3*x+1) / (x^4-5*x^2+1).
EXAMPLE
9 is in the sequence because (x, y) = (9, 43) is a solution to x^2 - 5xy + y^2 + 5 = 0.
MAPLE
A237254 := proc(n)
coeftayl( -x*(x-1)*(x^2+3*x+1) / (x^4-5*x^2+1), x=0, n);
end proc:
seq(A237254(n), n=1..40); # Wesley Ivan Hurt, Jul 14 2014
MATHEMATICA
Rest[CoefficientList[Series[- x (x - 1) (x^2 + 3 x + 1)/(x^4 - 5 x^2 + 1), {x, 0, 40}], x]] (* Vincenzo Librandi, Jul 01 2014 *)
PROG
(PARI) Vec(-x*(x-1)*(x^2+3*x+1)/(x^4-5*x^2+1) + O(x^100))
CROSSREFS
Sequence in context: A094557 A222658 A227212 * A026307 A139816 A368567
KEYWORD
nonn,easy
AUTHOR
Colin Barker, Feb 05 2014
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 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)