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.

User: Alexander Goebel

Alexander Goebel's wiki page.

Alexander Goebel has authored 1 sequences.

A333183 Number of digits in concatenation of first n positive even integers.

Original entry on oeis.org

1, 2, 3, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 97, 100, 103, 106, 109, 112, 115, 118, 121, 124, 127, 130, 133, 136, 139, 142, 145, 148, 151, 154
Offset: 1

Author

Alexander Goebel, Mar 10 2020

Keywords

Comments

Connected with A019520 and A038396, similar to how A058183 applies to both A007908 and A000422 to count the digits in them, as the order of the digits does not matter (2468 returns the same result as 8642).

Examples

			For example, a(5) = 6 because 246810 (the concatenation of the first five positive even integers) has six digits.
		

Crossrefs

Programs

Formula

a(n) = A058183(n) - Sum_{1..A058183(n)} A000035(A058183(n)).
a(n) = Sum_{i=1..n} (1+floor(log_10(2*i))). - Robert Israel, Apr 05 2020