login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


a(1)=1, a(2)=1, and, for n>2, a(n)=(a(n-1)+a(n-2))/5^k, where 5^k is the highest power of 5 dividing a(n-1)+a(n-2).
6

%I #26 Mar 08 2024 09:02:33

%S 1,1,2,3,1,4,1,1,2,3,1,4,1,1,2,3,1,4,1,1,2,3,1,4,1,1,2,3,1,4,1,1,2,3,

%T 1,4,1,1,2,3,1,4,1,1,2,3,1,4,1,1,2,3,1,4,1,1,2,3,1,4,1,1,2,3,1,4,1,1,

%U 2,3,1,4,1,1,2,3,1,4,1,1

%N a(1)=1, a(2)=1, and, for n>2, a(n)=(a(n-1)+a(n-2))/5^k, where 5^k is the highest power of 5 dividing a(n-1)+a(n-2).

%C This sequence is periodic with period 1,1,2,3,1,4 of length 6.

%C It appears that for most choices of a(1), a(2), and divisor b^k (replacing 5^k), the resulting sequence is not periodic.

%H G. C. Greubel, <a href="/A214684/b214684.txt">Table of n, a(n) for n = 1..10000</a>

%H B. Avila and T. Khovanova, <a href="http://arxiv.org/abs/1403.4614">Free Fibonacci Sequences</a>, arXiv preprint arXiv:1403.4614, 2014 and <a href="https://cs.uwaterloo.ca/journals/JIS/VOL17/Avila/avila4.html">J. Int. Seq. 17 (2014) # 14.8.5</a>

%H <a href="/index/Rec#order_06">Index entries for linear recurrences with constant coefficients</a>, signature (0,0,0,0,0,1).

%F a(n) = A132739(a(n-1) + a(n-2)), for n>2, and a(1)=1, a(2)=1. - _Michel Marcus_, Jul 08 2014

%F G.f.: x*(1+x+2*x^2+3*x^3+x^4+4*x^5)/((1-x)*(1+x)*(1-x+x^2)*(1+x+x^2)) . - _Colin Barker_, Jul 08 2014

%F a(n) = -4*[n=0] + (1/3)*(2 + 2*(-1)^n + A010892(n) - 2*A010892(n-1) + 3*A049347(n) + 3*A049347(n-1)). - _G. C. Greubel_, Mar 08 2024

%t CoefficientList[Series[(4*x^5 + x^4 + 3*x^3 + 2*x^2 + x + 1)/((1 - x)*(x + 1)*(x^2 - x + 1)*(x^2 + x + 1)), {x, 0, 100}], x] (* _Wesley Ivan Hurt_, Jul 08 2014 *)

%t LinearRecurrence[{0, 0, 0, 0, 0, 1},{1, 1, 2, 3, 1, 4},80] (* _Ray Chandler_, Aug 25 2015 *)

%o (PARI) lista(nn) = {va = vector(nn); va[1] = 1; va[2] = 1; for (n=3, nn, sump = va[n-1] + va[n-2]; va[n] = sump/5^(valuation(sump, 5));); va;} \\ _Michel Marcus_, Jul 08 2014

%o (PARI) Vec(-x*(4*x^5+x^4+3*x^3+2*x^2+x+1)/((x-1)*(x+1)*(x^2-x+1)*(x^2+x+1)) + O(x^100)) \\ _Colin Barker_, Jul 08 2014

%o (Magma) I:=[1,1,2,3,1,4]; [n le 6 select I[n] else Self(n-6): n in [1..100]]; // _G. C. Greubel_, Mar 08 2024

%o (SageMath)

%o def A214684_list(prec):

%o P.<x> = PowerSeriesRing(ZZ, prec)

%o return P( x*(1+x+2*x^2+3*x^3+x^4+4*x^5)/(1-x^6) ).list()

%o a=A214684_list(100); a[1:] # _G. C. Greubel_, Mar 08 2024

%Y Cf. A010892, A049347, A078412, A078414, A132739.

%K nonn,easy

%O 1,3

%A _John W. Layman_, Jul 25 2012

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 04:44 EDT 2024. Contains 376079 sequences. (Running on oeis4.)