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.

A290390 Double repunit numbers: repunits with repunit indices.

Original entry on oeis.org

0, 1, 11111111111, 111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111
Offset: 0

Views

Author

Felix Fröhlich, Jul 29 2017

Keywords

Comments

a(3) has 111 digits.
As in the case of A077585, where a necessary condition for a term to be prime is that its index is a Mersenne prime, a necessary (but not sufficient) condition for a term of this sequence to be prime is that the number of ones is a repunit prime, i.e., A055642(a(n)) must be a term of A004022.
Are there any primes in this sequence? In other words, is there a term of A004022 that is also a term of A004023?
Second sequence in the hierarchy of sequences obtained by successive numbers of nestings of the form A002275(...A002275(n)...). All higher order sequences in this hierarchy grow much too fast to be included in the OEIS.

Crossrefs

Programs

  • Mathematica
    Table[Nest[FromDigits@ ConstantArray[1, #] &, n, 2], {n, 0, 3}] (* Michael De Vlieger, Jul 30 2017 *)
  • PARI
    a002275(n) = (10^n-1)/9
    a(n) = a002275(a002275(n))

Formula

a(n) = A002275(A002275(n)).