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.

A277830 Number of digits '0' in the set of all numbers from 0 to A014824(n) = Sum_{i=1..n} i*10^(n-i) = (0, 1, 12, 123, 1234, 12345, ...).

This page as a plain text file.
%I A277830 #52 Dec 29 2020 16:51:06
%S A277830 1,1,2,23,344,4665,58986,713307,8367628,96021949,1083676272,
%T A277830 12071330614,133058985146,1454046641578,15775034317010,
%U A277830 170096022182442,1824417011947874,19478738020713306,207133059219478738,2194787382318244170,23182441724417009624,244170096256515775267
%N A277830 Number of digits '0' in the set of all numbers from 0 to A014824(n) = Sum_{i=1..n} i*10^(n-i) = (0, 1, 12, 123, 1234, 12345, ...).
%C A277830 The first 10 terms are given by a simple explicit formula and linear recurrence, which does not hold for n > 9. Note that A007908 (concat(1..n)) differs from A014824 (a(n) = a(n-1)*10 + n) for n > 9. - _M. F. Hasler_, Nov 07 2020
%H A277830 M. F. Hasler, <a href="/A277830/b277830.txt">Table of n, a(n) for n = 0..100</a>
%F A277830 a(n) = A083449(n) + 1 for n <= 9.
%F A277830 a(n) = 1 + A061217(A014824(n)), taking A061217(0)=0. - _Kevin Ryde_, Nov 07 2020
%o A277830 (PARI) print1(c=1);N=0;for(n=1,8,print1(","c+=sum(k=N+1,N=N*10+n,#select(d->d==0,digits(k))))) \\ For purpose of illustration.
%o A277830 (PARI) apply( A277830(n)={A061217(A014824(n)+!n)+1}, [0..22]) \\ Thanks to Kevin Ryde's formula. - _M. F. Hasler_, Nov 07 2020
%Y A277830 Cf. A277831 - A277838, A277849, A277635, A272525, A083449, A014824.
%K A277830 nonn,base,easy
%O A277830 0,3
%A A277830 _M. F. Hasler_, Nov 01 2016
%E A277830 Incorrect data, b-file, links, formulas and programs deleted by _M. F. Hasler_, following observations by _Kevin Ryde_, Nov 07 2020