OFFSET
0,2
LINKS
Michel Marcus, Table of n, a(n) for n = 0..5000
MATHEMATICA
seq[n_] := FromDigits[Flatten[IntegerDigits /@ #]] & /@ Partition[Range[0, (n + 1)*2], 2];
seq[44] (* Harvey P. Dale, Jan 24 2012, edited by Robert P. P. McKone, Jan 23 2021 *)
PROG
(Magma) [Seqint(Intseq(n+1) cat Intseq(n)): n in [0..86 by 2]]; // Bruno Berselli, Jun 18 2011
(PARI) a(n)=eval(Str(2*n, 2*n+1)) \\ Charles R Greathouse IV, Jul 21 2016
(Python)
def a(n): return int(str(2*n)+str(2*n+1))
print([a(n) for n in range(45)]) # Michael S. Branicky, Jan 23 2021
CROSSREFS
KEYWORD
base,nonn,easy
AUTHOR
EXTENSIONS
More terms from Erich Friedman
STATUS
approved