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!)
A345111 a(n) = n + A345110(n). 5
0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 11, 22, 33, 44, 55, 66, 77, 88, 99, 110, 22, 33, 44, 55, 66, 77, 88, 99, 110, 121, 33, 44, 55, 66, 77, 88, 99, 110, 121, 132, 44, 55, 66, 77, 88, 99, 110, 121, 132, 143, 55, 66, 77, 88, 99, 110, 121, 132, 143, 154, 66, 77, 88 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
First differs from both A052008 and A056964 at n = 101.
LINKS
EXAMPLE
For n = 101: 101 + A345110(101) = 101 + 11 = 112, so a(101) = 112.
MATHEMATICA
Array[#+FromDigits@RotateLeft@IntegerDigits@#&, 100, 0] (* Giorgos Kalogeropoulos, Jun 09 2021 *)
PROG
(PARI) eva(n) = subst(Pol(n), x, 10)
rot(vec) = if(#vec < 2, return(vec)); my(s=concat(Str(2), ".."), v=[]); s=concat(s, Str(#vec)); v=vecextract(vec, s); v=concat(v, vec[1]); v
a(n) = n + eva(rot(digits(n)))
(Python)
def rotl(s): return s[1:] + s[0]
def a(n): return n + int(rotl(str(n)))
print([a(n) for n in range(63)]) # Michael S. Branicky, Jun 09 2021
CROSSREFS
Sequence in context: A062028 A262223 A070196 * A056964 A052008 A117463
KEYWORD
nonn,base,easy
AUTHOR
Felix Fröhlich, Jun 09 2021
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 18 08:45 EDT 2024. Contains 372618 sequences. (Running on oeis4.)