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.

A325493 a(n) = Sum_{k=1..n} A325910(k) * 10^(2^(k-1)).

Original entry on oeis.org

0, 10, 1010, 11011010, 1111001011011010, 11111111000011011111001011011010, 1111111111111111000000001111001011111111000011011111001011011010
Offset: 0

Views

Author

Seiichi Manyama, Sep 14 2019

Keywords

Crossrefs

Programs

  • PARI
    {a(n) = sum(i=1, n, 10^2^(i-1)*((-1)^(i-1)*sum(j=0, i-1, (-1)^j*10^2^j)-(1-(-1)^i)/2)/9)}