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!)
A061512 a(0) = 1; a(n) is obtained by incrementing each digit of a(n-1) by 2. 5
1, 3, 5, 7, 9, 11, 33, 55, 77, 99, 1111, 3333, 5555, 7777, 9999, 11111111, 33333333, 55555555, 77777777, 99999999, 1111111111111111, 3333333333333333, 5555555555555555, 7777777777777777, 9999999999999999, 11111111111111111111111111111111, 33333333333333333333333333333333 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
In A061511-A061522, A061746-A061750 when the incremented digit exceeds 9 it is written as a 2-digit string. So 9+1 becomes the 2-digit string 10, etc.
Also: odd repdigits (A010785) of length 2^k, cf. formula. - M. F. Hasler, Jun 24 2016
LINKS
FORMULA
a(n) = (10^2^floor(n/5)-1)/9*(n%5*2+1), where n%5 means the remainder (in {0..4}) of n divided by 5. - M. F. Hasler, Jun 24 2016
EXAMPLE
Following 33: 3+2 = 5 and 3+2 = 5, hence the next term is 55.
MATHEMATICA
NestList[FromDigits[Flatten[IntegerDigits/@(IntegerDigits[#]+2)]]&, 1, 30] (* Harvey P. Dale, Apr 13 2012 *)
PROG
(PARI) A061512(n)=10^2^(n\5)\9*(n%5*2+1) \\ M. F. Hasler, Jun 24 2016
(PARI) nxt(n) = my(d=digits(n)); if(d[1]<9, n+2*(10^#d - 1)/9, (10^(2*#d) - 1)/9)
inv(n) = {my(d=digits(n)); 5*logint(#d, 2) + (d[1]+1)\2} \\ David A. Corneth, Jun 24 2016
CROSSREFS
Cf. also A010785.
Sequence in context: A029950 A061507 A046497 * A356750 A083964 A340439
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, May 08 2001
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), May 11 2001
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 April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)