|
| |
|
|
A120819
|
|
Primes with n consecutive digits ascending beginning with the digit 1.
|
|
10
| | |
|
|
|
OFFSET
| 1,1
|
|
|
COMMENTS
| Digits are in ascending order beginning with 1 and after 9 comes 0.
Indices of primes in A057137.
|
|
|
REFERENCES
| Clifford A. Pickover, A Passion for Mathematics, Wiley, 2005; see p. 61, 298.
|
|
|
MATHEMATICA
| fQ[n_] := PrimeQ@ FromDigits@ Mod[Range@n, 10]; lst = {}; Do[ If[fQ@n, AppendTo[lst, n]; Print@n], {n, 10000}]; lst
|
|
|
CROSSREFS
| Cf. A006055, A057137, A120828, A120820, A120821, A120822, A120823, A120824, A120825, A120826, A120827.
Sequence in context: A101273 A136365 A031900 * A115078 A183996 A062907
Adjacent sequences: A120816 A120817 A120818 * A120820 A120821 A120822
|
|
|
KEYWORD
| base,hard,nonn
|
|
|
AUTHOR
| Robert G. Wilson v (rgwv(AT)rgwv.com), Jul 05 2006
|
| |
|
|