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.

A063970 a(1) = 2; for n>1, write down all divisors of the previous term in order of magnitude.

Original entry on oeis.org

2, 12, 1234612, 1247915831639077814156283086536173061234612
Offset: 1

Views

Author

Labos Elemer, Sep 05 2001

Keywords

Comments

The next term has 3104 digits. - Harvey P. Dale, May 28 2017

Examples

			Divisors of a(3)={1, 2, 4, 79, 158, 316, 3907, 7814, 15628, 308653, 617306, 1234612}
		

Crossrefs

Programs

  • Mathematica
    NestList[FromDigits[Flatten[IntegerDigits/@Divisors[#]]]&,2,4] (* Harvey P. Dale, May 28 2017 *)
  • Python
    from sympy import divisors
    def aupton(terms):
      alst = [2]
      for n in range(2, terms+1):
        alst.append(int("".join(str(d) for d in divisors(alst[-1]))))
      return alst
    print(aupton(4)) # Michael S. Branicky, Feb 12 2021

Extensions

Next term has more than 3000 decimal digits.