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.

A173770 a(n) = (4*10^n - 13)/9.

Original entry on oeis.org

3, 43, 443, 4443, 44443, 444443, 4444443, 44444443, 444444443, 4444444443, 44444444443, 444444444443, 4444444444443, 44444444444443, 444444444444443, 4444444444444443, 44444444444444443, 444444444444444443, 4444444444444444443, 44444444444444444443, 444444444444444444443
Offset: 1

Views

Author

Vincenzo Librandi, Feb 24 2010

Keywords

Examples

			For n=2, a(2)=10*3+13=43; n=3, a(3)=10*43+13=443; n=4, a(4)=10*443+13=4443.
		

Crossrefs

Cf. A093163.

Programs

  • Mathematica
    (4*10^Range[25] - 13)/9 (* Paolo Xausa, Jun 27 2025 *)
  • PARI
    my(x='x+O('x^22)); Vec(x*(3+10*x)/((1-11*x+10*x^2))) \\ Elmo R. Oliveira, Jun 19 2025

Formula

a(n) = 10*a(n-1) + 13 (with a(1)=3).
G.f.: x*(3+10*x)/((10*x-1)*(x-1)). - R. J. Mathar, Aug 23 2011
From Elmo R. Oliveira, Jun 19 2025: (Start)
E.g.f.: 1 + exp(x)*(4*exp(9*x) - 13)/9.
a(n) = 11*a(n-1) - 10*a(n-2) for n > 2. (End)

Extensions

More terms from Elmo R. Oliveira, Jun 19 2025

A096843 Primes of form repdigit - 1. Primes whose sum of divisors is a decimal repdigit.

Original entry on oeis.org

2, 3, 5, 7, 43, 443, 887, 2221, 8887, 444443, 888887, 444444443, 888888887, 444444444443, 888888888887, 222222222222222221, 444444444444444444444444444443, 44444444444444444444444444444443
Offset: 1

Views

Author

Labos Elemer, Jul 15 2004

Keywords

Comments

Union numbers 2, 5 and sequences A093171, A093163 and A091189.
Corresponding values of sigma(a(n)) are in A028987. - Jaroslav Krizek, Mar 19 2013

Examples

			n=43: sigma(43)=44;
		

Crossrefs

Extensions

Missing a(1)=2 and a(3)=5 added by Jaroslav Krizek, Mar 19 2013
Showing 1-2 of 2 results.