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.

Showing 1-2 of 2 results.

A274743 Repunits with odd indices multiplied by 99, i.e., 99*(1, 111, 11111, 1111111, ...).

Original entry on oeis.org

99, 10989, 1099989, 109999989, 10999999989, 1099999999989, 109999999999989, 10999999999999989, 1099999999999999989, 109999999999999999989, 10999999999999999999989, 1099999999999999999999989, 109999999999999999999999989, 10999999999999999999999999989
Offset: 1

Views

Author

Rodolfo A. Fiorini, Jul 04 2016

Keywords

Comments

It is apparent that the reciprocals of the terms in the sequence give an increasing sequence of periodic terms similar to A095372, but with the initial term equal to "01". The leading zero is important (see links). Furthermore, the reciprocals of the terms give a sequence of even growing periods, starting from 2, with delta = 4 (i.e., 2, 6, 10, 14, 18, ...).
Adding "11" to each term gives the binary representation of the n-th iteration of "Rule 14" elementary cellular automaton starting with a single ON (black cell) as in A266299.

Examples

			a(2) = 101*10989 - 100*99 = 1099989.
		

Crossrefs

Programs

Formula

a(n) = 101*a(n-1) - 100*a(n-2) for n>2, with a(0)= 99 and a(1)= 10989.
a(n) = 99*A100706(n-1).
G.f.: 99*x*(1 + 10*x)/((1 - x)*(1 - 100*x)). - Ilya Gutkovskiy, Jul 04 2016
a(n) = 11*(10^(2*n-1)-1). - Wesley Ivan Hurt, Jul 04 2016
E.g.f.: 11*(9 - 10*exp(x) + exp(100*x))/10. - Stefano Spezia, Aug 05 2024

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

Original entry on oeis.org

0, 11, 1221, 123321, 12344321, 1234554321, 123456654321, 12345677654321, 1234567887654321, 123456789987654321, 12345679010987654321, 1234567901220987654321, 123456790123320987654321, 12345679012344320987654321, 1234567901234554320987654321
Offset: 0

Views

Author

Rodolfo A. Fiorini, Jul 05 2016

Keywords

Comments

From the second to the tenth term they look like in A259937, but it is a completely different sequence.
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).

Examples

			a(10) = rep(10)*rep(11) = 12345679010987654321, digit string period of 1/a(10) -> L = 10*11 = 110.
		

Crossrefs

Programs

  • Mathematica
    Table[(10^n - 1) (10^(n + 1) - 1)/81, {n, 0, 20}] (* Bruno Berselli, Jul 05 2016 *)
  • PARI
    concat(0, Vec(11*x/((1-x)*(1-10*x)*(1-100*x)) + O(x^99))) \\ Altug Alkan, Jul 05 2016
    
  • PARI
    a(n) = (1-11*10^n+10^(1+2*n))/81 \\ Colin Barker, Jul 05 2016

Formula

O.g.f.: 11*x/((1 - x)*(1 - 10*x)*(1 - 100*x)).
E.g.f.: (1 - 11*exp(9*x) + 10*exp(99*x))*exp(x)/81.
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.
a(n) = (10^n - 1)*(10^(n+1) - 1)/81 = A002275(n)*A002275(n+1).

Extensions

Edited and added formulae by Bruno Berselli, Jul 05 2016
Last term corrected by Colin Barker, Jul 05 2016
Showing 1-2 of 2 results.