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!)
A048765 Smallest factorial >= n. 3
1, 2, 6, 6, 6, 6, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 24, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120, 120 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
REFERENCES
Krassimir T. Atanassov, On the 43rd and 44th Smarandache Problems, Notes on Number Theory and Discrete Mathematics, Sophia, Bulgaria, Vol. 5, No. 2, (1999), 86-88.
J. Castillo, Other Smarandache Type Functions: Inferior/Superior Smarandache f-part of x, Smarandache Notions Journal, Vol. 10, No. 1-2-3 (1999), 202-204.
LINKS
Krassimir T. Atanassov, On Some of Smarandache's Problems.
Florentin Smarandache, Only Problems, Not Solutions!.
FORMULA
n <= a(n) << n log n / log log n. - Charles R Greathouse IV, Sep 19 2012
Sum_{n>=1} 1/a(n)^2 = 1 + Sum_{n>=1} (n!-(n-1)!)/n!^2 = e + gamma - Ei(1) = A001113 - A229837 = 1.4003796770..., where gamma is Euler's constant (A001620) and Ei is the exponential integral. - Amiram Eldar, Aug 09 2022
MATHEMATICA
Join[{1}, Flatten[Table[Table[n!, n!-(n-1)!], {n, 5}]]] (* Harvey P. Dale, Jun 15 2016 *)
PROG
(Haskell)
a048764 n = a048764_list !! (n-1)
a048764_list = f [1..] $ tail a000142_list where
f (u:us) vs'@(v:vs) | u == v = v : f us vs
| otherwise = v : f us vs'
-- Reinhard Zumkeller, Jun 04 2012
(PARI) a(n)=my(t=1, k=1); while(t<n, t*=k++); t \\ Charles R Greathouse IV, Sep 19 2012
CROSSREFS
Sequence in context: A258576 A278253 A294961 * A103643 A079892 A096014
KEYWORD
nonn,easy
AUTHOR
Charles T. Le (charlestle(AT)yahoo.com)
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 25 04:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)