login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

Smallest prime ending in exactly n 3's.
7

%I #13 Dec 08 2024 22:10:36

%S 3,233,2333,23333,733333,10333333,83333333,1033333333,17333333333,

%T 23333333333,2633333333333,10333333333333,53333333333333,

%U 3233333333333333,1333333333333333,23333333333333333,2033333333333333333,10333333333333333333,173333333333333333333,1733333333333333333333

%N Smallest prime ending in exactly n 3's.

%H Harry J. Smith, <a href="/A065580/b065580.txt">Table of n, a(n) for n = 1..100</a>

%t Do[a = Table[3, {n} ]; k = 0; While[ b = FromDigits[ Join[ IntegerDigits[k], a]]; Mod[k, 10] == 3 || !PrimeQ[b], k++ ]; Print[b], {n, 1, 17} ]

%o (PARI) a(n)={ my(t=10^n, b=(t-1)/3, d=0); while (!isprime(b + t*d), d++; if(d%10==3, d++)); b + t*d } \\ _Harry J. Smith_, Oct 23 2009

%Y Cf. A037059, A065586, A065821, A065581, A065582.

%K nonn,base

%O 1,1

%A _Robert G. Wilson v_, Nov 28 2001