login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A099814
Bisection of A002275.
8
0, 11, 1111, 111111, 11111111, 1111111111, 111111111111, 11111111111111, 1111111111111111, 111111111111111111, 11111111111111111111, 1111111111111111111111, 111111111111111111111111, 11111111111111111111111111, 1111111111111111111111111111, 111111111111111111111111111111, 11111111111111111111111111111111
OFFSET
0,2
COMMENTS
Except for the first term (replace 0 with 1) this is the binary representation of the n-th iteration of the elementary cellular automaton starting with a single ON (black) cell for Rule 189. - Robert Price, Feb 21 2016
FORMULA
For n>0, 1 repeated 2n times.
a(n) = a(n-1) + 11*100^(n-1) with a(0)=0. - Vincenzo Librandi, Nov 16 2010
a(n) = (100^n - 1)/9. - Bernard Schott, Apr 09 2023
From Stefano Spezia, Jul 27 2024: (Start)
G.f.: 11*x/((1 - x)*(1 - 100*x)).
E.g.f.: exp(x)*(exp(99*x) - 1)/9. (End)
MATHEMATICA
Table[(10^(2n) - 1)/9, {n, 0, 20}] (* Stefan Steinerberger, Apr 29 2006 *)
Table[FromDigits[PadRight[{}, 2n, 1]], {n, 0, 20}] (* Harvey P. Dale, Jul 20 2015 *)
PROG
(Python)
def A099814(n): return (10**(n<<1)-1)//9 # Chai Wah Wu, Nov 04 2022
CROSSREFS
Cf. A002275, A100706 (other bisection).
Sequence in context: A289968 A248753 A248754 * A340549 A260077 A068053
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Nov 19 2004
EXTENSIONS
More terms from Stefan Steinerberger, Apr 29 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 21 22:57 EDT 2024. Contains 376090 sequences. (Running on oeis4.)