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-2 of 2 results.

A064755 a(n) = n*9^n - 1.

Original entry on oeis.org

8, 161, 2186, 26243, 295244, 3188645, 33480782, 344373767, 3486784400, 34867844009, 345191655698, 3389154437771, 33044255768276, 320275094369453, 3088366981419734, 29648323021629455, 283512088894331672, 2701703435345984177, 25666182635786849690, 243153309181138576019
Offset: 1

Views

Author

N. J. A. Sloane, Oct 19 2001

Keywords

Crossrefs

Programs

Formula

From Chai Wah Wu, Feb 01 2018: (Start)
a(n) = 19*a(n-1) - 99*a(n-2) + 81*a(n-3) for n > 3.
G.f.: x*(81*x^2 - 9*x - 8)/((x - 1)*(9*x - 1)^2). (End)
From Elmo R. Oliveira, May 05 2025: (Start)
E.g.f.: 1 + exp(x)*(9*x*exp(8*x) - 1).
a(n) = A158749(n) - 1. (End)

A064747 a(n) = n*9^n + 1.

Original entry on oeis.org

1, 10, 163, 2188, 26245, 295246, 3188647, 33480784, 344373769, 3486784402, 34867844011, 345191655700, 3389154437773, 33044255768278, 320275094369455, 3088366981419736, 29648323021629457, 283512088894331674, 2701703435345984179, 25666182635786849692, 243153309181138576021
Offset: 0

Views

Author

N. J. A. Sloane, Oct 19 2001

Keywords

Crossrefs

Cf. A158749.

Programs

  • Magma
    [ n*9^n+1: n in [0..20]]; // Vincenzo Librandi, Sep 16 2011
  • Mathematica
    Table[n*9^n+1,{n,0,20}] (* or *) LinearRecurrence[{19,-99,81},{1,10,163},20]

Formula

a(n) = 19*a(n-1) - 99*a(n-2) + 81*a(n-3); a(0)=1, a(1)=10, a(2)=163. - Harvey P. Dale, Jan 16 2016
From Elmo R. Oliveira, Sep 09 2024: (Start)
G.f.: -(72*x^2 - 9*x + 1)/((x - 1)*(9*x - 1)^2).
E.g.f.: exp(x)*(9*x*exp(8*x) + 1).
a(n) = A158749(n) + 1. (End)
Showing 1-2 of 2 results.