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.

A098752 a(1) = 1 and a(n+1) is the least number > a(n) that begins with the last digit of a(n) and doesn't end with 0.

This page as a plain text file.
%I A098752 #22 Mar 08 2022 08:25:13
%S A098752 1,11,12,21,101,102,201,1001,1002,2001,10001,10002,20001,100001,
%T A098752 100002,200001,1000001,1000002,2000001,10000001,10000002,20000001,
%U A098752 100000001,100000002,200000001,1000000001,1000000002,2000000001,10000000001
%N A098752 a(1) = 1 and a(n+1) is the least number > a(n) that begins with the last digit of a(n) and doesn't end with 0.
%C A098752 a(n) must be chosen with nonzero rightmost digit.
%F A098752 For n == 0 (mod 3), a(n) = 10^(n/3) + 2; for n == 1 (mod 3), n>1, a(n) = 2*10^((n-1)/3) + 1; for n == 2 (mod 3), a(n) = 10^((n+1)/3) + 1. - _Sam Alexander_, Jan 04 2005
%F A098752 From _Chai Wah Wu_, Jun 02 2016: (Start)
%F A098752 a(n) = 11*a(n-3) - 10*a(n-6) for n > 7.
%F A098752 G.f.: x*(1 + x + 2*x^2)*(1 + 10*x - 10*x^3 - 10*x^4)/((1 - x)*(1 - 10*x^3)*(1 + x + x^2)). (End)
%F A098752 a(n) = (1-sign((n-1) mod 3))*10^floor(n/3)+10^floor((n+1)/3)-sign(n mod 3)+2, for n > 1. - _Wesley Ivan Hurt_, Mar 06 2022
%Y A098752 Cf. A076654.
%Y A098752 Cf. A101233.
%K A098752 base,easy,nonn
%O A098752 1,2
%A A098752 _Eric Angelini_, Oct 01 2004
%E A098752 More terms from _Sam Alexander_, Jan 04 2005
%E A098752 More terms from _David Wasserman_, Feb 26 2008