OFFSET
1,1
REFERENCES
Felice Russo, A set of new Smarandache functions, sequences and conjectures in number theory, American Research Press 2000
MAPLE
read("transforms"):
A053065 := proc(n)
option remember;
if n = 1 then
2;
else
p := ithprime(n) ;
if type(n, 'even') then
digcat2(p, procname(n-1)) ;
else
digcat2(procname(n-1), p) ;
end if;
end if;
end proc:
seq(A053065(n), n=1..15) ; # R. J. Mathar, Sep 27 2013
CROSSREFS
KEYWORD
base,easy,nonn,less
AUTHOR
Felice Russo, Feb 25 2000
STATUS
approved