A160444 Expansion of g.f.: x^2*(1 + x - x^2)/(1 - 2*x^2 - 2*x^4).
0, 1, 1, 1, 2, 4, 6, 10, 16, 28, 44, 76, 120, 208, 328, 568, 896, 1552, 2448, 4240, 6688, 11584, 18272, 31648, 49920, 86464, 136384, 236224, 372608, 645376, 1017984, 1763200, 2781184, 4817152, 7598336, 13160704, 20759040, 35955712, 56714752
Offset: 1
Links
- G. C. Greubel, Table of n, a(n) for n = 1..1000
- W. Beinert, Villardscher Teilungskanon, Lexikon der Typographie
- W. Limbrunner, Das Quadrat, ein Wunder der Geometrie. (in German)
- Willibald Limbrunner, Family of sequences for k
- M-T. Zenner, Villard de Honnecourt and Euclidean Geoometry, Nexus Network Journal 4 (2002) 65-78.
- Index entries for linear recurrences with constant coefficients, signature (0,2,0,2).
Crossrefs
Programs
-
Magma
I:=[0,1,1,1]; [n le 4 select I[n] else 2*(Self(n-2) +Self(n-4)): n in [1..40]]; // G. C. Greubel, Feb 18 2023
-
Mathematica
LinearRecurrence[{0,2,0,2}, {0,1,1,1}, 40] (* G. C. Greubel, Feb 18 2023 *)
-
SageMath
@CachedFunction def a(n): # a = A160444 if (n<5): return ((n+1)//3) else: return 2*(a(n-2) + a(n-4)) [a(n) for n in range(1, 41)] # G. C. Greubel, Feb 18 2023
Extensions
Edited by R. J. Mathar, May 14 2009
Comments