OFFSET
0,1
COMMENTS
a(n) = number whose primorial base representation (A049345) begins with digits "11", followed by n zeros: 11, 110, 1100, 11000, 110000, ...
LINKS
Michael De Vlieger, Table of n, a(n) for n = 0..349
MATHEMATICA
Total /@ Partition[FoldList[Times, 1, Prime@ Range[20]], 2, 1] (* Michael De Vlieger, Jun 24 2023 *)
PROG
(PARI) a(n) = factorback(primes(n)) + factorback(primes(n+1)); \\ Michel Marcus, Nov 23 2022
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Antti Karttunen, Sep 24 2016
STATUS
approved