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.

A033175 n 3's followed by 1.

Original entry on oeis.org

1, 31, 331, 3331, 33331, 333331, 3333331, 33333331, 333333331, 3333333331, 33333333331, 333333333331, 3333333333331, 33333333333331, 333333333333331, 3333333333333331, 33333333333333331, 333333333333333331, 3333333333333333331, 33333333333333333331, 333333333333333333331
Offset: 0

Views

Author

Jan Jensen (dorul(AT)post6.tele.dk)

Keywords

References

  • F. Smarandache, Properties of numbers, University of Craiova, 1973.

Crossrefs

Cf. A051200.

Programs

Formula

a(n) = (10^(n+1) - 7)/3.
a(n) = 10*a(n-1) + 21 (with a(0)=1). - Vincenzo Librandi, Nov 17 2010
G.f.: (1+20*x)/((10*x-1)*(x-1)). - R. J. Mathar, Aug 24 2011
From Elmo R. Oliveira, Apr 29 2025: (Start)
E.g.f.: exp(x)*(10*exp(9*x) - 7)/3.
a(n) = 11*a(n-1) - 10*a(n-2). (End)