OFFSET
0,1
COMMENTS
The angle each (straight) fold line makes with the long dimension of the original rectangle alternates in degrees as 90, 0, 90, 0, and so on. Each fold doubles the number of rectangles and halves the area of each rectangle.
The first five or six terms in the sequence can be verified experimentally with a standard piece of paper.
LINKS
FORMULA
a(n) = 2*a(n-2) + 3 for n >= 2.
a(n) = 2^((n-2)/2)*((7+5*sqrt(2))+(7-5*sqrt(2))*(-1)^n)-3.
a(n) = a(n-1)+2*a(n-2)-2*a(n-3). G.f.: -(4*x^2-3*x-4) / ((x-1)*(2*x^2-1)). - Colin Barker, Jul 07 2014
EXAMPLE
When n = 0, the piece of paper hasn't been folded yet and has 4 edges. Thus a(0) = 4.
When n = 1, we have folded the piece of paper once. The fold splits 2 of the original edges in half, resulting in 6 edges, and it creates one new edge at the fold itself, for 7 edges in total. Thus a(1) = 7.
PROG
(PARI) Vec(-(4*x^2-3*x-4)/((x-1)*(2*x^2-1)) + O(x^100)) \\ Colin Barker, Jul 07 2014
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Harold M. Frost, III (halfrost(AT)charter.net), Dec 19 2007
EXTENSIONS
Edited, extended, and formulas by Nathaniel Johnston, Nov 11 2012
STATUS
approved