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!)
A270741 a(n) = (Fibonacci(n+2)-1) mod Fibonacci(floor(n/2)). 0
0, 0, 0, 0, 0, 1, 0, 1, 3, 2, 0, 1, 11, 10, 0, 1, 32, 31, 0, 1, 87, 86, 0, 1, 231, 230, 0, 1, 608, 607, 0, 1, 1595, 1594, 0, 1, 4179, 4178, 0, 1, 10944, 10943, 0, 1, 28655, 28654, 0, 1, 75023, 75022, 0, 1, 196416, 196415, 0, 1, 514227, 514226, 0, 1, 1346267, 1346266, 0, 1, 3524576, 3524575, 0, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,9
COMMENTS
It appears that a(n)=1 gives same terms as A222945. - Michel Marcus, Mar 23 2016
LINKS
FORMULA
Empirical g.f.: x^7*(1-x+2*x^2+x^3-3*x^4+3*x^5-6*x^6+5*x^7+x^8-x^9+2*x^10-2*x^11) / ((1-x)*(1+x^2)*(1+x^2-x^4)*(1-x^2-x^4)). - Colin Barker, Mar 23 2016
EXAMPLE
a(10) = 3 since (1 + 1 + 2 + 3 + 5 + 8 + 13 + 21 + 34 + 55) mod 5 = 143 mod 5 = 3.
a(11) = 2 since (1 + 1 + 2 + 3 + 5 + 8 + 13 + 21 + 34 + 55 + 89) mod 5 = 2.
a(12) = 0 since (1 + 1 + 2 + 3 + 5 + 8 + 13 + 21 + 34 + 55 + 89 + 144) mod 8 = 0.
MATHEMATICA
Table[Mod[Fibonacci[n + 2] - 1, Fibonacci[Floor[n/2]]], {n, 2, 69}] (* Michael De Vlieger, Mar 23 2016 *)
PROG
(PARI) for(n=2, 1e2, print1((fibonacci(n+2)-1) % fibonacci(n\2), ", "));
CROSSREFS
Sequence in context: A193277 A118972 A171224 * A212220 A193233 A145878
KEYWORD
nonn
AUTHOR
Altug Alkan, Mar 22 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 May 2 04:48 EDT 2024. Contains 372178 sequences. (Running on oeis4.)