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.

A178632 a(n) = 45*((10^n - 1)/9)^2.

Original entry on oeis.org

45, 5445, 554445, 55544445, 5555444445, 555554444445, 55555544444445, 5555555444444445, 555555554444444445, 55555555544444444445, 5555555555444444444445, 555555555554444444444445, 55555555555544444444444445, 5555555555555444444444444445, 555555555555554444444444444445
Offset: 1

Views

Author

Reinhard Zumkeller, May 31 2010

Keywords

Examples

			n=1: ..................... 45 = 9 * 5;
n=2: ................... 5445 = 99 * 55;
n=3: ................. 554445 = 999 * 555;
n=4: ............... 55544445 = 9999 * 5555;
n=5: ............. 5555444445 = 99999 * 55555;
n=6: ........... 555554444445 = 999999 * 555555;
n=7: ......... 55555544444445 = 9999999 * 5555555;
n=8: ....... 5555555444444445 = 99999999 * 55555555;
n=9: ..... 555555554444444445 = 999999999 * 555555555.
		

Crossrefs

Programs

Formula

a(n) = 45*A002477(n) = A002283(n)*A002279(n).
a(n) = (A002279(n-1)*10^n + A002278(n))*10 + 5.
G.f.: 45*x*(1 + 10*x)/((1 - x)*(1 - 10*x)*(1 - 100*x)). - Ilya Gutkovskiy, Feb 24 2017
From Elmo R. Oliveira, Aug 01 2025: (Start)
E.g.f.: 5*exp(x)*(1 - 2*exp(9*x) + exp(99*x))/9.
a(n) = 111*a(n-1) - 1110*a(n-2) + 1000*a(n-3) for n > 3. (End)