OFFSET
1,1
COMMENTS
A049442 is a subset of this sequence.
LINKS
Shyam Sunder Gupta, Table of n, a(n) for n = 1..3350
EXAMPLE
a(15)=43058 because the 43058th prime is 519947 and 2 + 3 + 5 + 7 + 11 + ... + 519947 = 10689537247, which is pandigital.
MATHEMATICA
b = {}; a = 0; Do[a = a + Prime[i]; u = Union[IntegerDigits[a]]; If[Equal[u, {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}], AppendTo[b, i]], {i, 1, 60000}]; b
Position[Accumulate[Prime[Range[56000]]], _?(Min[DigitCount[#]]> 0&)]// Flatten (* Harvey P. Dale, Apr 14 2020 *)
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Shyam Sunder Gupta, Aug 22 2013
STATUS
approved