The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A095761 a(n) = A014824(2*n-1). 1
1, 123, 12345, 1234567, 123456789, 12345679011, 1234567901233, 123456790123455, 12345679012345677, 1234567901234567899, 123456790123456790121, 12345679012345679012343 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Previous name was: Numbers whose square root shows strings of seemingly rational and irrational strings.
LINKS
FORMULA
a(1) = 1; for n > 1, a(n) = 100*a(n - 1) + 22*n - 21.
O.g.f.: x(1+21x)/((-1+x)^2*(1-100x)) = -17/(81(-1+x)) - 1/(81(-1+100*x)) - 2/(9(-1+x)^2). - R. J. Mathar, Feb 01 2008
MATHEMATICA
RecurrenceTable[{a[1]==1, a[n]==100 a[n-1] + 22 n - 21}, a, {n, 20}] (* Vincenzo Librandi, Apr 03 2018 *)
PROG
(PARI) a=vector(10^3); a[1]=1; for(n=2, #a, a[n]=100*a[n-1]+22*n-21); a \\ Altug Alkan, Mar 30 2018
(GAP) a:=[1];; for n in [2..20] do a[n]:=100*a[n-1]+22*n-21; od; a; # Muniru A Asiru, Mar 30 2018
(Magma) [-19/81-(2/9)*(n-1)+(100/81)*100^(n-1): n in [1..20]]; // Vincenzo Librandi, Apr 03 2018
CROSSREFS
Cf. A014824.
Sequence in context: A098683 A324435 A135479 * A121917 A049670 A181006
KEYWORD
easy,nonn,base
AUTHOR
Michael Joseph Halm, Jul 10 2004
EXTENSIONS
Better name from Georg Fischer, Mar 30 2018
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 25 17:30 EDT 2024. Contains 372804 sequences. (Running on oeis4.)