login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A146528
a(0) = 4; for n >= 1, a(n) = 2^n + 4.
1
4, 6, 8, 12, 20, 36, 68, 132, 260, 516, 1028, 2052, 4100, 8196, 16388, 32772, 65540, 131076, 262148, 524292, 1048580, 2097156, 4194308, 8388612, 16777220, 33554436, 67108868, 134217732, 268435460, 536870916, 1073741828
OFFSET
0,1
COMMENTS
This is one of many possible ways to extend the Platonic solids sequence A053016.
FORMULA
a(n)=A140504(n), n>0. [From R. J. Mathar, Nov 05 2008]
MATHEMATICA
v[n_] := 2*(If[n == 0, 0, 2^(n - 1)] + 2); Table[v[n], {n, 0, 30}]
CROSSREFS
Essentially the same as A140504.
Sequence in context: A308875 A323059 A136254 * A345016 A216051 A176777
KEYWORD
nonn,less
AUTHOR
Roger L. Bagula, Oct 30 2008
EXTENSIONS
Edited by N. J. A. Sloane, Mar 21 2021
STATUS
approved