A137976 Fibonacci numbers (A000045) not in A103311.
3, 13, 34, 144, 377, 1597, 4181, 17711, 46368, 196418, 514229, 2178309, 5702887, 24157817
Offset: 1
Keywords
Extensions
Edited by N. J. A. Sloane, May 08 2008
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.
CoefficientList[Series[x^3/(1-3x+4x^2-2x^3+x^4),{x,0,45}],x] (* or *) LinearRecurrence[{3,-4,2,-1},{0,0,0,1},45] (* Harvey P. Dale, Jun 22 2011 *)
LinearRecurrence[{3,-4,2,-1},{1,2,3,3},50] (* Paolo Xausa, Dec 05 2023 *)
a=[1,2,3,3];for(i=1,99,a=concat(a,3*a[#a]-4*a[#a-1]+2*a[#a-2]-a[#a-3]));a \\ Charles R Greathouse IV, Jun 02 2011
CoefficientList[Series[(1-x^2)/(1-x^5),{x,0,100}],x] (* or *) PadRight[{},100,{1,0,-1,0,0}] (* or *) LinearRecurrence[{-1,-1,-1,-1},{1,0,-1,0},100] (* Harvey P. Dale, Mar 10 2013 *)
All 5 rows of the table T(d,n) are: .0,.0,.0,.1,.3,.5,.5,..0,-13,-34,-55,-55,...0,.144,... .0,.0,.1,.2,.2,.0,-5,-13,-21,-21,..0,.55,.144,.233,... .0,.1,.1,.0,-2,-5,-8,.-8,..0,.21,.55,.89,..89,...0,... .1,.0,-1,-2,-3,-3,.0,..8,.21,.34,.34,..0,.-89,-233,... -1,-1,-1,-1,.0,.3,.8,.13,.13,..0,-34,-89,-144,-144,...
Comments