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.

A246880 6*((10^n-1)/9)*(10^(n+1))+9*(10^n-1)/9.

Original entry on oeis.org

0, 609, 66099, 6660999, 666609999, 66666099999, 6666660999999, 666666609999999, 66666666099999999, 6666666660999999999, 666666666609999999999, 66666666666099999999999, 6666666666660999999999999, 666666666666609999999999999, 66666666666666099999999999999
Offset: 0

Views

Author

Felix Fröhlich, Sep 06 2014

Keywords

Comments

Numbers of the form 6...609...9 (i.e., consisting of an odd number of digits with the middle digit 0, all digits to the left of the middle digit 6 and all digits to the right of the middle digit 9).

Crossrefs

Programs

  • Magma
    [(6*((10^n - 1)/9))*(10^(n + 1)) + (9*(10^n - 1)/9) : n in [0..15]]; // Wesley Ivan Hurt, Sep 15 2014
  • Maple
    A246880:=n->(6*((10^n - 1)/9))*(10^(n + 1)) + (9*(10^n - 1)/9): seq(A246880(n),n=0..15); # Wesley Ivan Hurt, Sep 15 2014
  • Mathematica
    Table[(6*((10^n - 1)/9))*(10^(n + 1)) + (9*(10^n - 1)/9), {n, 15}] (* Wesley Ivan Hurt, Sep 15 2014 *)
    Join[{0}, CoefficientList[Series[20/(3 x - 300 x^2) + 1/(x^2 - x) + 17/(30 x^2 - 3 x), {x, 0, 30}], x]] (* Wesley Ivan Hurt, Sep 15 2014 *)
  • PARI
    a(n)=6*((10^n-1)/9)*(10^(n+1))+9*(10^n-1)/9
    

Formula

G.f.: 20/(3-300*x)+1/(x-1)+17/(30*x-3); a(n) = 111*a(n-1)-1110*a(n-2)+1000*a(n-3). - Wesley Ivan Hurt, Sep 15 2014