cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A200675 Powers of 2 repeated 4 times.

Original entry on oeis.org

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

Views

Author

Jeremy Gardiner, Nov 20 2011

Keywords

Comments

Run lengths in A173922.

Examples

			a(4) = 2^1 = 2.
		

Crossrefs

Programs

  • 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 *)
  • 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

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

Extensions

Offset corrected by Charles R Greathouse IV, Oct 03 2016