The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A249852 a(n) is the total number of pentagons on the left or the right of the vertical symmetry axis of a pentagon expansion (vertex to vertex) after n iterations. 2
0, 2, 7, 14, 23, 35, 50, 67, 86, 108, 133, 160, 189, 221, 256, 293, 332, 374, 419, 466, 515, 567, 622, 679, 738, 800, 865, 932, 1001, 1073, 1148, 1225, 1304, 1386, 1471, 1558, 1647, 1739, 1834, 1931, 2030, 2132, 2237, 2344, 2453, 2565, 2680, 2797, 2916, 3038, 3163, 3290, 3419 (list; graph; refs; listen; history; text; internal format)
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
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
Sequence in context: A261246 A008865 A227582 * A324587 A018392 A051640
KEYWORD
nonn
AUTHOR
Kival Ngaokrajang, Mar 07 2015
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 16 00:16 EDT 2024. Contains 372549 sequences. (Running on oeis4.)