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!)
A073729 Concatenation of initial and final digits of n in decimal representation. 11
11, 22, 33, 44, 55, 66, 77, 88, 99, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
10 <= a(n) <= 99; a(a(n))=a(n).
LINKS
FORMULA
a(n) = A000030(n)*10 + A010879(n).
EXAMPLE
a(12321)=11; a(3210123)=33; a(59387)=57; a(8923)=83.
MATHEMATICA
Table[FromDigits[{First[x = IntegerDigits[n]], Last[x]}], {n, 69}] (* Jayanta Basu, Jul 08 2013 *)
PROG
(PARI) a(n)=10*digits(n)[1]+n%10 \\ Charles R Greathouse IV, Dec 28 2012
(Haskell)
a073729 n = 10 * a000030 n + a010879 n -- Reinhard Zumkeller, Dec 31 2012
CROSSREFS
Sequence in context: A065998 A364275 A351877 * A073730 A367610 A087346
KEYWORD
nonn,base,easy,look
AUTHOR
Reinhard Zumkeller, Aug 05 2002
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 16 10:52 EDT 2024. Contains 372552 sequences. (Running on oeis4.)