OFFSET
1,1
COMMENTS
a(n) is formed by interleaving the digits of A019519(n) and A038395(n). - Sean A. Irvine, Jun 26 2025
EXAMPLE
a(4) = 17355371: deleting alternate digits starting from the LSD gives 1357. Deleting the other digits gives 7531.
PROG
(PARI) a(n) = {my(d, v=w=[1]); for(i=2, n, v=concat(v, d=digits(2*i-1)); w=concat(d, w)); fromdigits(vector(2*#v, i, if(i%2, v[1+i\2], w[i/2]))); } \\ Sean A. Irvine, Jun 26 2025
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Amarnath Murthy, Nov 25 2002
EXTENSIONS
More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Apr 19 2003
Corrected and extended by Harvey P. Dale, Apr 11 2012
Original terms restored by Sean A. Irvine, Jun 26 2025
STATUS
approved
