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”).

A345143
Reflection of the concatenation of the previous two terms minus the previous term.
0
0, 1, 9, 82, 207, 70021, 11937681, 1867379174326, 623471971900739499585, 5859949370091168271294333980238096, 6908320893334921728606040790129494417723642675198936230
OFFSET
0,3
FORMULA
a(n) = A004086(a(n-2)||a(n-1)) - a(n-1) for n >= 2, a(n) = n for n <= 1.
EXAMPLE
a(4) = 207 since 28(9) - 82 = 207.
MAPLE
a:= proc(n) option remember; `if`(n<2, n, (s-> parse(cat(seq(
s[-i], i=1..length(s))))-a(n-1))(cat("", a(n-2), a(n-1))))
end:
seq(a(n), n=0..11); # Alois P. Heinz, Jun 11 2021
MATHEMATICA
a[0] = 0; a[1] = 1; a[n_] := a[n] = FromDigits[Join @@ (Reverse @ IntegerDigits[#] & /@ {a[n - 1], a[n - 2]})] - a[n - 1]; Array[a, 11, 0] (* Amiram Eldar, Jun 09 2021 *)
PROG
(Python)
def f(v): return int((str(v[-2])+str(v[-1]))[::-1]) - v[-1]
def aupton(nn):
alst = [0, 1]
for n in range(2, nn+1): alst.append(f(alst))
return alst[:nn+1]
print(aupton(10)) # Michael S. Branicky, Jun 09 2021
CROSSREFS
Sequence in context: A115988 A067506 A263816 * A275917 A293803 A263817
KEYWORD
nonn,base
AUTHOR
George Bull, Jun 09 2021
STATUS
approved