|
| |
|
|
A068842
|
|
Smallest prime larger than 2^n whose digits begin with those of 2^n.
|
|
1
| |
|
|
11, 23, 41, 83, 163, 3203, 641, 1283, 25601, 51203, 10243, 20483, 40961, 81929, 163841, 327689, 6553621, 1310723, 2621447, 5242883, 10485767, 20971529, 41943049, 838860817, 167772161, 335544323, 6710886407, 1342177283
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 0,1
|
|
|
EXAMPLE
| a(5) = 3203 with leading digits 32 = 2^5.
|
|
|
MATHEMATICA
| f[n_] := For[x=10, True, x*=10, For[y=0, y<x, y++, If[PrimeQ[x*n+y], Return[x*n+y]]]]; a[n_] := f[2^n]
|
|
|
CROSSREFS
| Cf. A068841.
Sequence in context: A052034 A077041 A190797 * A199848 A191235 A146451
Adjacent sequences: A068839 A068840 A068841 * A068843 A068844 A068845
|
|
|
KEYWORD
| nonn,base
|
|
|
AUTHOR
| Amarnath Murthy (amarnath_murthy(AT)yahoo.com), Mar 10 2002
|
|
|
EXTENSIONS
| Edited by Dean Hickerson (dean.hickerson(AT)yahoo.com), Jun 09 2002
|
| |
|
|