A072710 Last digit of F(n) is 8 where F(n) is the n-th Fibonacci number.
6, 24, 27, 33, 66, 84, 87, 93, 126, 144, 147, 153, 186, 204, 207, 213, 246, 264, 267, 273, 306, 324, 327, 333, 366, 384, 387, 393, 426, 444, 447, 453, 486, 504, 507, 513, 546, 564, 567, 573, 606, 624, 627, 633, 666, 684, 687, 693, 726, 744, 747, 753, 786
Offset: 1
Links
- Colin Barker, Table of n, a(n) for n = 1..1000
- Index entries for linear recurrences with constant coefficients, signature (1,0,0,1,-1).
Programs
-
PARI
a(n) = (-60 - 6*(-1)^n - (21-9*I)*(-I)^n - (21+9*I)*I^n + 60*n) / 4 \\ Colin Barker, Oct 16 2015
-
PARI
Vec(x*(27*x^4+6*x^3+3*x^2+18*x+6)/(x^5-x^4-x+1) + O(x^100)) \\ Colin Barker, Oct 16 2015
Formula
G.f.: x*(27*x^4+6*x^3+3*x^2+18*x+6) / (x^5-x^4-x+1). - Colin Barker, Jun 16 2013
a(n) = (-60 - 6*(-1)^n - (21-9*i)*(-i)^n - (21+9*i)*i^n + 60*n) / 4 where i=sqrt(-1). - Colin Barker, Oct 16 2015
Comments