OFFSET
0,2
COMMENTS
Inspired by A255870. But at the higher iterations, the perimeter would be a pentagram instead of a pentagon. See illustration in the links.
LINKS
Kival Ngaokrajang, Illustration of initial terms, Illustration of n = 6
FORMULA
Conjectures from Colin Barker, Mar 29 2015: (Start)
a(n) = 3*a(n-1)-4*a(n-2)+7*a(n-3)-5*a(n-4) for n>3.
G.f.: -(3*x^2-3*x-1) / ((x-1)*(5*x^3-2*x^2+2*x-1)).
(End)
PROG
(Small Basic)
a[1]=1
a[2]=0
a[3]=0
a[4]=4
TextWindow.Write("1, 6, 11, 16, 41, ")
b=0
s=41
rs=5
For n=5 To 50
b=b+a[n-4]
a[n]=4*(2*b+3*(a[n-3]/4))
rs=rs+a[n]
s=s+5*rs
TextWindow.Write(s+", ")
EndFor
CROSSREFS
KEYWORD
nonn
AUTHOR
Kival Ngaokrajang, Mar 28 2015
STATUS
approved