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.

A274766 Multiplication of pair of contiguous repunits, i.e., (0*1, 1*11, 11*111, 111*1111, 1111*11111, ...).

This page as a plain text file.
%I A274766 #48 Jul 16 2017 14:50:29
%S A274766 0,11,1221,123321,12344321,1234554321,123456654321,12345677654321,
%T A274766 1234567887654321,123456789987654321,12345679010987654321,
%U A274766 1234567901220987654321,123456790123320987654321,12345679012344320987654321,1234567901234554320987654321
%N A274766 Multiplication of pair of contiguous repunits, i.e., (0*1, 1*11, 11*111, 111*1111, 1111*11111, ...).
%C A274766 From the second to the tenth term they look like in A259937, but it is a completely different sequence.
%C A274766 The inverse of sequence terms, except the first one, give a sequence of periodic terms with periods as in A002378, the sequence of oblong (or promic, or heteromecic) numbers: a(n) = n*(n+1). Digit string period L of inverse a(n) is given by L = n*(n+1).
%H A274766 Colin Barker, <a href="/A274766/b274766.txt">Table of n, a(n) for n = 0..500</a>
%H A274766 R. A. Fiorini, <a href="http://dx.doi.org/10.3233/FI-2015-1267">Computerized tomography noise reduction by CICT optimized exponential cyclic sequences (OECS) co-domain</a>, Fundamenta Informaticae, vol.141 (2015), 115-134.
%H A274766 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (111,-1110, 1000).
%F A274766 O.g.f.: 11*x/((1 - x)*(1 - 10*x)*(1 - 100*x)).
%F A274766 E.g.f.: (1 - 11*exp(9*x) + 10*exp(99*x))*exp(x)/81.
%F A274766 a(n) = 111*a(n-1) - 1110*a(n-2) + 1000*a(n-3) for n>2, a(0)=0, a(1)=11, a(2)=1221.
%F A274766 a(n) = (10^n - 1)*(10^(n+1) - 1)/81 = A002275(n)*A002275(n+1).
%e A274766 a(10) = rep(10)*rep(11) = 12345679010987654321, digit string period of 1/a(10) -> L = 10*11 = 110.
%t A274766 Table[(10^n - 1) (10^(n + 1) - 1)/81, {n, 0, 20}] (* _Bruno Berselli_, Jul 05 2016 *)
%o A274766 (PARI) concat(0, Vec(11*x/((1-x)*(1-10*x)*(1-100*x)) + O(x^99))) \\ _Altug Alkan_, Jul 05 2016
%o A274766 (PARI) a(n) = (1-11*10^n+10^(1+2*n))/81 \\ _Colin Barker_, Jul 05 2016
%Y A274766 Cf. A002275, A002378, A259937, A274743, A274755.
%K A274766 nonn,easy
%O A274766 0,2
%A A274766 _Rodolfo A. Fiorini_, Jul 05 2016
%E A274766 Edited and added formulae by _Bruno Berselli_, Jul 05 2016
%E A274766 Last term corrected by _Colin Barker_, Jul 05 2016