[go: up one dir, main page]

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!)
A273624 a(n) = (1/11)*(Fibonacci(4*n) + Fibonacci(6*n)). 4
1, 15, 248, 4305, 76255, 1361520, 24384737, 437245935, 7843863784, 140737371825, 2525326494911, 45314438127840, 813129752279233, 14590988151618255, 261824431125415640, 4698247224097107345, 84306614992412658847, 1512820749915870503760, 27146466385039244529569 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
This is a divisibility sequence: if n divides m then a(n) divides a(m). More generally, if r is an even integer then the sequence Fibonacci(r*n) + Fibonacci((r + 2)*n) is a divisibility sequence. See A215466 for the case r = 2.
Also, the sequence s(n) := Fibonacci(4*n) + Fibonacci(6*n) + ... + Fibonacci((2*k + 2)*n) is a divisibility sequence when k is a positive integer that is not a multiple of 3.
LINKS
FORMULA
a(n) = -a(-n).
a(n) = 25*a(n-1) - 128*a(n-2) + 25*a(n-3) - a(n-4).
O.g.f. (x^2 - 10*x + 1)/((x^2 - 7*x + 1)*(x^2 - 18*x + 1)).
MAPLE
with(combinat):
seq(1/11*(fibonacci(4n) + fibonacci(6n)), n = 1..20);
MATHEMATICA
LinearRecurrence[{25, -128, 25, -1}, {1, 15, 248, 4305}, 100] (* G. C. Greubel, Jun 02 2016 *)
Table[1/11 (Fibonacci[4 n] + Fibonacci[6 n]), {n, 1, 30}] (* Vincenzo Librandi, Jun 02 2016 *)
PROG
(Magma) [1/11*(Fibonacci(4*n)+Fibonacci(6*n)): n in [1..25]]; // Vincenzo Librandi, Jun 02 2016
(PARI) a(n)=(fibonacci(4*n) + fibonacci(6*n))/11 \\ Charles R Greathouse IV, Jun 08 2016
CROSSREFS
Sequence in context: A215855 A163031 A065920 * A223424 A218806 A285395
KEYWORD
nonn,easy
AUTHOR
Peter Bala, May 29 2016
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 August 29 11:15 EDT 2024. Contains 375512 sequences. (Running on oeis4.)