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.

A008593 Multiples of 11.

Original entry on oeis.org

0, 11, 22, 33, 44, 55, 66, 77, 88, 99, 110, 121, 132, 143, 154, 165, 176, 187, 198, 209, 220, 231, 242, 253, 264, 275, 286, 297, 308, 319, 330, 341, 352, 363, 374, 385, 396, 407, 418, 429, 440, 451, 462, 473, 484, 495, 506, 517, 528, 539, 550, 561, 572, 583
Offset: 0

Views

Author

Keywords

Comments

Numbers for which the sum of "digits" in base 100 is divisible by 11. For instance, 193517302 gives 1 + 93 + 51 + 73 + 02 = 220, and 2 + 20 = 22 = 2 * 11. - Daniel Forgues, Feb 22 2016
Numbers in which the sum of the digits in the even positions equals the sum of the digits in the odd positions. - Stefano Spezia, Jan 05 2025

Crossrefs

Programs

Formula

a(n) = 11*n.
G.f.: 11*x/(1-x)^2. - David Wilding, Jun 21 2014
E.g.f.: 11*x*exp(x). - Stefano Spezia, Oct 08 2022
From Elmo R. Oliveira, Apr 10 2025: (Start)
a(n) = 2*a(n-1) - a(n-2).
a(n) = A008604(n)/2. (End)