OFFSET
1,1
COMMENTS
The definition means: write n as the highest possible triangular number plus some nonnegative rest (so b is one plus the index of the greedy inverse of n in A000217), and concatenate the two decimal expansions of b and the rest. - R. J. Mathar, May 25 2023
REFERENCES
W. Bruns and J. Herzog, Cohen-Macaulay Rings, Cambridge, 1993, p. 158.
MAPLE
invA000217 := proc(n)
local i;
for i from 1 do
if binomial(i+1, 2) > n then
return i;
end if;
end do:
end proc:
A014368 := proc(n)
local b, c;
b := invA000217(n) ;
c := n-binomial(b, 2) ;
digcatL([b, c]) ;
end proc:
seq(A014368(n), n=1..70) ; # R. J. Mathar, May 25 2023
CROSSREFS
KEYWORD
nonn,easy,base
AUTHOR
STATUS
approved