[go: up one dir, main page]

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”).

A200675
Powers of 2 repeated 4 times.
5
1, 1, 1, 1, 2, 2, 2, 2, 4, 4, 4, 4, 8, 8, 8, 8, 16, 16, 16, 16, 32, 32, 32, 32, 64, 64, 64, 64, 128, 128, 128, 128, 256, 256, 256, 256, 512, 512, 512, 512, 1024, 1024, 1024, 1024, 2048, 2048, 2048, 2048, 4096, 4096, 4096, 4096
OFFSET
0,5
COMMENTS
Run lengths in A173922.
FORMULA
a(n) = 2^floor(n/4).
G.f.: x*(1+x)*(1+x^2)/(1-2*x^4 ). - R. J. Mathar, Nov 21 2011
EXAMPLE
a(4) = 2^1 = 2.
MATHEMATICA
CoefficientList[Series[x*(1 + x)*(1 + x^2)/(1 - 2*x^4), {x, 0, 50}], x] (* or *) Table[2^(Floor[n/4]), {n, 0, 50}] (* G. C. Greubel, Apr 30 2017 *)
PROG
(PARI) a(n)=2^(n\4) \\ Charles R Greathouse IV, Oct 03 2016
(Python)
def A200675(n): return 1<<(n>>2) # Chai Wah Wu, Jan 30 2023
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Jeremy Gardiner, Nov 20 2011
EXTENSIONS
Offset corrected by Charles R Greathouse IV, Oct 03 2016
STATUS
approved