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

A139105
Bisection of A139101.
1
1, 1001, 1001010111, 1001010111010111, 1001010111010111010111, 100101011101011101011101111101, 1001010111010111010111011111010111110111, 1001010111010111010111011111010111110111010111, 1001010111010111010111011111010111110111010111011111011111, 100101011101011101011101111101011111011101011101111101111101011111, 100101011101011101011101111101011111011101011101111101111101011111011101, 1001010111010111010111011111010111110111010111011111011111010111110111010111110111
OFFSET
1,2
FORMULA
a(n) = A139101(2n-1). - R. J. Mathar, Apr 25 2008
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: A139105 := proc(n) A139101(2*n-1) ; end: seq(A139105(n), n=1..12) ; # R. J. Mathar, Apr 25 2008
CROSSREFS
Cf. A139101.
Sequence in context: A143906 A215593 A204575 * A262596 A213316 A169828
KEYWORD
base,easy,nonn
AUTHOR
Omar E. Pol, Apr 08 2008
EXTENSIONS
More terms from R. J. Mathar, Apr 25 2008
STATUS
approved