This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A117647 #22 Apr 10 2025 07:07:35 %S A117647 0,1,2,5,8,21,34,89,144,377,610,1597,2584,6765,10946,28657,46368, %T A117647 121393,196418,514229,832040,2178309,3524578,9227465,14930352, %U A117647 39088169,63245986,165580141,267914296,701408733,1134903170,2971215073,4807526976,12586269025,20365011074,53316291173 %N A117647 a(2n) = A014445(n), a(2n+1) = A015448(n+1). %C A117647 Because of g.f. in Formula section, numbers k + 1 such that A088207(k)/k is an integer. - _Ctibor O. Zizka_, Apr 07 2025 %H A117647 G. C. Greubel, <a href="/A117647/b117647.txt">Table of n, a(n) for n = 0..1000</a> %H A117647 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (0,4,0,1). %F A117647 a(n) = A059973(n+2) - A059973(n+1). %F A117647 G.f.: x*(x+1)^2/(1 -4*x^2 -x^4). %F A117647 a(n) = Fibonacci((6*n + 1 - (-1)^n)/4) = Fibonacci(A007494(n)). - _G. C. Greubel_, Jul 12 2021 %t A117647 Table[Fibonacci[(6*n+1 -(-1)^n)/4], {n, 0, 40}] (* _G. C. Greubel_, Jul 12 2021 *) %o A117647 (Magma) I:=[0,1,2,5]; [n le 4 select I[n] else 4*Self(n-2) +Self(n-4): n in [1..41]]; // _G. C. Greubel_, Jul 12 2021 %o A117647 (Sage) [fibonacci((6*n+1-(-1)^n)/4) for n in [0..40]] # _G. C. Greubel_, Jul 12 2021 %Y A117647 Cf. A000045, A001950, A007494, A014445, A015448, A033887, A059973, A088207. %K A117647 easy,nonn %O A117647 0,3 %A A117647 _Creighton Dement_, Apr 10 2006