login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A268706 Largest n-digit prime having at least n-1 digits equal to 7. 3
7, 97, 977, 7877, 97777, 787777, 7877777, 77777747, 787777777, 8777777777, 79777777777, 777777779777, 7877777777777, 77777779777777, 778777777777777, 8777777777777777, 77797777777777777, 797777777777777777, 7777877777777777777, 97777777777777777777 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Michel Lagneau, Michael De Vlieger and Robert G. Wilson v, Table of n, a(n) for n = 1..1268
MAPLE
f:= proc(n)
local r, i, j, p;
r:= 7*(10^n-1)/9;
for p in sort([r, seq(seq(r + i*10^j, i=[$(-7)..(-1), 1, 2]), j=0..n-1)], `>`) do
if isprime(p) then return p fi
od;
error("no prime found")
end proc:
map(f, [$1..100]); # Robert Israel, Feb 24 2016
MATHEMATICA
f[n_] := Block[{k = 0, p = {}, r = 7 (10^n - 1)/9, s = Range@ 10 - 8}, While[k < n, AppendTo[p, Select[r + 10^k*s, PrimeQ]]; k++]; p = Max@ Flatten@ p]; Array[f, 20]
CROSSREFS
Sequence in context: A362472 A242377 A178005 * A030540 A071361 A007810
KEYWORD
nonn,base
AUTHOR
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 18 05:30 EDT 2024. Contains 375995 sequences. (Running on oeis4.)