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.

A325907 a(n) = ( (-1)^n * Sum_{k=0..n-2} (-1)^k*10^(2^k) + 10^(2^(n-1)) - ((-1)^n+3)/2 )/3.

Original entry on oeis.org

3, 36, 3363, 33336636, 3333333366663363, 33333333333333336666666633336636, 3333333333333333333333333333333366666666666666663333333366663363
Offset: 1

Views

Author

Seiichi Manyama, Sep 08 2019

Keywords

Comments

All terms are elements of A213517.

Examples

			              36 =        -3 - 1 +        4 * 10^1.
            3363 =       -36 - 1 +       34 * 10^2.
        33336636 =     -3363 - 1 +     3334 * 10^4.
3333333366663363 = -33336636 - 1 + 33333334 * 10^8.
------------------------------------------------------
T(n) = n*(n+1)/2.
               T(3) =                               6.
              T(36) =                             666.
            T(3363) =                         5656566.
        T(33336636) =                 555665666566566.
T(3333333366663363) = 5555555666655656666556566566566.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := ((-1)^n * Sum[(-1)^k * 10^(2^k), {k, 0, n - 2}] + 10^(2^(n - 1)) - ((-1)^n + 3)/2)/3; Array[a, 7] (* Amiram Eldar, May 07 2021 *)
  • PARI
    {a(n) = ((-1)^n*sum(k=0, n-2, (-1)^k*10^2^k)+10^2^(n-1)-((-1)^n+3)/2)/3}

Formula

a(n) = 3 * A325906(n).
a(n) = -a(n-1) - 1 + A093137(2^(n-2)) * 10^(2^(n-2)).