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!)
A254502 a(n) is the smallest nonnegative integer such that a(n)! contains a string of exactly n consecutive 7's. 10
0, 6, 31, 48, 22, 599, 1102, 5280, 4667, 1753, 48861, 150336, 223254, 644487, 7016773, 9588848 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
EXAMPLE
a(1) = 6 since 6! equals 720, which contains '7'.
MATHEMATICA
A254452[n_] := Module[{m = 0},
If[n == 0, While[MemberQ[IntegerDigits[m!], 7], m++]; m,
t = Table[7, n];
While[! MemberQ[Split[IntegerDigits[m!]], t], m++]; m]];
Table[A254452[n], {n, 0, 14}] (* Robert Price, Mar 21 2019 *)
CROSSREFS
Sequence in context: A043058 A155097 A306331 * A025524 A042841 A215730
KEYWORD
nonn,base,more
AUTHOR
Martin Y. Champel, Jan 31 2015
EXTENSIONS
a(11), a(12) from Jon E. Schoenfield, Feb 21 2015
a(0) prepended by Jon E. Schoenfield, Mar 01 2015
a(13) from Jon E. Schoenfield, Mar 06 2015
a(14)-a(15) from Bert Dobbelaere, Oct 29 2018
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 April 24 12:31 EDT 2024. Contains 371937 sequences. (Running on oeis4.)