login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A368361
Comma transform of the odd numbers.
1
13, 35, 57, 79, 91, 11, 31, 51, 71, 92, 12, 32, 52, 72, 93, 13, 33, 53, 73, 94, 14, 34, 54, 74, 95, 15, 35, 55, 75, 96, 16, 36, 56, 76, 97, 17, 37, 57, 77, 98, 18, 38, 58, 78, 99, 19, 39, 59, 79, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91, 11, 31, 51, 71, 91
OFFSET
0,1
COMMENTS
See A367360 for further information.
LINKS
MAPLE
a:= n-> parse(cat(""||(2*n+1)[-1], ""||(2*n+3)[1])):
seq(a(n), n=0..79); # Alois P. Heinz, Jan 03 2024
PROG
(Python)
def A368361(n): return (10, 30, 50, 70, 90)[n%5]+int(str((n<<1)+3)[0]) # Chai Wah Wu, Jan 03 2024
CROSSREFS
Sequence in context: A082214 A115161 A063300 * A227986 A228024 A243383
KEYWORD
nonn,base
AUTHOR
N. J. A. Sloane, Jan 02 2024
STATUS
approved