OFFSET
1,1
LINKS
Paolo Xausa, Table of n, a(n) for n = 1..1000
J. Gebel, Integer points on Mordell curves [Cached copy, after the original web site tnt.math.se.tmu.ac.jp was shut down in 2017]
Index entries for linear recurrences with constant coefficients, signature (5,-5,1).
FORMULA
From Colin Barker, Dec 11 2012: (Start)
a(n) = 5*a(n-1) - 5*a(n-2) + a(n-3) for n > 4.
G.f.: x*(x^3-6*x^2+11*x-3) / ((x-1)*(x^2-4*x+1)). (End)
EXAMPLE
For n=4, a(4)=37; b(4)=21; binomial(37,3) = 7770;
binomial(37,1)*binomial(21,2) = 37*210 = 7770.
MAPLE
r:=sqrt(3): for n from 1 to 40 do
a(n):=(6+(1+r)*(2+r)^(n-1)+(1-r)*(2-r)^(n-1))/4: end do:
MATHEMATICA
LinearRecurrence[{5, -5, 1}, {3, 4, 11, 37}, 30] (* Paolo Xausa, Apr 22 2026 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Paul Weisenhorn, Jun 30 2010
EXTENSIONS
Edited by Sean A. Irvine, Apr 22 2026
More terms from Paolo Xausa, Apr 22 2026
STATUS
approved
