OFFSET
0,2
COMMENTS
a(n) is also total number of pentagrams on the left or the right of the vertical symmetry axis of a pentagram expansion (vertex to vertex) after n iterations.
The total pentagons (or pentagrams) after n iterations is A005891. See illustration in the links.
LINKS
Kival Ngaokrajang, Illustration of initial terms
FORMULA
Conjectures from Colin Barker, Mar 07 2015: (Start)
a(n) = 3*a(n-1)-4*a(n-2)+4*a(n-3)-3*a(n-4)+a(n-5).
G.f.: -x*(x^3+x^2+x+2) / ((x-1)^3*(x^2+1)).
(End)
PROG
(PARI) {a=2; s=2; d=2; print1(0, ", ", s, ", "); for(n=2, 100, if(Mod(n, 4)==3, d=2, if(Mod(n, 4)==4, d=2, d=3)); a=a+d; s=s+a; print1(s, ", "); )}
CROSSREFS
KEYWORD
nonn
AUTHOR
Kival Ngaokrajang, Mar 07 2015
STATUS
approved