login
A280182
Pandigital 10-digit numbers in the decimal expansion of Pi, in order of appearance.
2
4592307816, 5923078164, 2790814356, 7908143562, 4192705638, 457618932, 5768134920, 395648127, 9654032187, 4726530981, 8213496075, 758496231, 1539628074, 632175894, 2103598746, 9462805371, 6391708245, 4985673021, 3261879405, 3578016924
OFFSET
1,1
COMMENTS
Numbers can start with 0. For example, a(6) = 0457618932.
MATHEMATICA
t = Table[Take[RealDigits[Pi, 10, i+9][[1]], -10], {i, 50000}];
a = Select[t, Length@Union@#==10 &];
FromDigits/@a (* XU Pingya, Apr 29 2020 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Bobby Jacobs, Dec 28 2016
STATUS
approved