OFFSET
1,1
EXAMPLE
a(4) = 28466482: deleting alternate digits starting from the LSD gives 2468. Deleting the other ones gives 8642.
PROG
(PARI) a(n) = {my(d, v=w=[2]); for(i=2, n, v=concat(v, d=digits(2*i)); w=concat(d, w)); fromdigits(vector(2*#v, i, if(i%2, v[1+i\2], w[i/2]))); } \\ Jinyuan Wang, May 17 2020
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amarnath Murthy, Nov 25 2002
EXTENSIONS
More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Apr 19 2003
a(11)-a(12) from Jinyuan Wang, May 17 2020
STATUS
approved