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.

Showing 1-1 of 1 results.

A249805 a(n+1) is the next smallest nontrivial cube beginning with a(n), initial term is 5.

Original entry on oeis.org

5, 512, 5124031424, 5124031424891652800051720000001
Offset: 1

Views

Author

Derek Orr, Dec 03 2014

Keywords

Comments

a(5) is a 94-digit number. - Jon E. Schoenfield, Dec 04 2014

Crossrefs

Programs

  • PARI
    a(n)=k=n; s=1; while(s<10^7, if(s%10, if(s^3\(10^(#Str(s^3)-#Str(k)))==k, print1(s^3, ", "); k=s^3)); s++)
    a(5)
  • Python
    def f(x):
      n = x
      s = 1
      while s < 10**7:
        if s % 10:
          S = str(s**3)
          if S.startswith(str(n)):
            print(s**3, end=', ')
            n = s**3
        s += 1
    f(5)
    

Extensions

a(4) from Jon E. Schoenfield, Dec 04 2014
Showing 1-1 of 1 results.