OFFSET
1,2
COMMENTS
5 divides a(4k). a(n) is prime for n = {2,5,7,17,19,31,439,545,...}. p^2 divides a(p-1) for p = {11,19,29,31,41,59,61,71,...} = A045468[n] Primes congruent to {1, 4} mod 5, also odd primes where 5 is a square mod p except 5. Square prime divisors of a(n) up to n=70 are p = {2,3,7,11,13,19,23,29,31,41,47,59,61,71,89,101,139,151,199,233,281,461,521,911,1597,2207,3571,5779,9349,9901,19489,3010349,...} that appear to be the prime factors of Fibonacci numbers.
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..200
Index entries for linear recurrences with constant coefficients, signature (5,-7,1,3,-1).
FORMULA
a(n) = Sum_{i=1..n} Sum_{j=1..n} Fibonacci(i+j-2) + Fibonacci(i+j).
a(n) = Lucas(2*n+3) - 2*Lucas(n+3) + 4, where Lucas = A000032.
G.f.: x*(1+x^3-4*x^2+6*x)/((x-1)*(x^2+x-1)*(x^2-3*x+1)). - Maksym Voznyy (voznyy(AT)mail.ru), Aug 14 2009
EXAMPLE
Matrix begins:
1 3 4 7 11...
3 4 7 11 18...
4 7 11 18 29...
7 11 18 29 47...
11 18 29 47 76...
...
MATHEMATICA
Table[Sum[Sum[Fibonacci[i+j-2]+Fibonacci[i+j], {i, 1, n}], {j, 1, n}], {n, 1, 70}] Table[(Fibonacci[2n+2]+Fibonacci[2n+4])-2(Fibonacci[n+2]+Fibonacci[n+4])+4, {n, 1, 70}]
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Alexander Adamchuk, Aug 07 2006
STATUS
approved
