The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A048544 Smallest oblong (promic) number containing exactly n 7's. 11
72, 11772, 771762, 757770, 77677782, 779777700, 7077772770, 778777127772, 7777770777090, 57777777767730, 7777577077877756, 177677777977777980, 17673737777477771772, 677777977779775677756, 1789771777777771777710, 7747977777770507777772, 298777877777767737777770 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Eric Weisstein's World of Mathematics, Pronic Number
MATHEMATICA
With[{pn=2*Accumulate[Range[430000000]]}, Table[Select[pn, DigitCount[#, 10, 7] == n&, 1], {n, 12}]]//Flatten (* Harvey P. Dale, Aug 14 2017 *)
PROG
(Python)
def A048544(n):
k, m = 1, 2
while True:
if str(m).count('7') == n:
return m
k += 1
m += 2*k # Chai Wah Wu, Mar 23 2018
CROSSREFS
Sequence in context: A271192 A271193 A289369 * A295599 A270254 A273629
KEYWORD
nonn,base
AUTHOR
Patrick De Geest, May 15 1999
EXTENSIONS
a(13)-a(17) from Giovanni Resta, Oct 09 2019
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 May 23 07:28 EDT 2024. Contains 372760 sequences. (Running on oeis4.)