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.

A139106 Bisection of A139101.

Original entry on oeis.org

10, 100101, 100101011101, 100101011101011101, 1001010111010111010111011111, 100101011101011101011101111101011111, 100101011101011101011101111101011111011101, 1001010111010111010111011111010111110111010111011111, 100101011101011101011101111101011111011101011101111101111101, 1001010111010111010111011111010111110111010111011111011111010111110111, 100101011101011101011101111101011111011101011101111101111101011111011101011111, 1001010111010111010111011111010111110111010111011111011111010111110111010111110111011111
Offset: 1

Views

Author

Omar E. Pol, Apr 08 2008

Keywords

Crossrefs

Cf. A139101.

Programs

  • Maple
    A139101 := proc(n) option remember ; local a,p; if n = 1 then RETURN(1); else a := 10*A139101(n-1) ; for p from ithprime(n-1)+1 to ithprime(n)-1 do a := 10*a+1 ; od: fi ; RETURN(a) ; end: A139106 := proc(n) A139101(2*n) ; end: seq(A139106(n),n=1..12) ; # R. J. Mathar, Apr 25 2008

Formula

a(n) = A139101(2n). - R. J. Mathar, Apr 25 2008

Extensions

More terms from R. J. Mathar, Apr 25 2008