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!)
A139172 Natural numbers of the form (n!-2)/2. 10
0, 2, 11, 59, 359, 2519, 20159, 181439, 1814399, 19958399, 239500799, 3113510399, 43589145599, 653837183999, 10461394943999, 177843714047999, 3201186852863999, 60822550204415999, 1216451004088319999 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
COMMENTS
Natural numbers of the form (n!-m)/m:
for m=1 n!-1 see A033312;
for m=2 (n!-2)/2 see A139172;
for m=3 (n!-3)/3 see A139173;
for m=4 (n!-4)/4 see A139174;
for m=5 (n!-5)/5 see A139175;
for m=6 (n!-6)/6 see A139176;
for m=7 (n!-7)/7 see A139177;
for m=8 (n!-8)/8 see A139183;
for m=9 (n!-9)/9 see A139184;
for m=10 (n!-10)/10 see A139185.
From Artur Jasinski, Oct 14 2008: (Start)
a(n) = Number of numbers removed in first step of Eratosthenes's sieve for n!
a(5)=A145532(1), a(6)=A145533(1), a(7)=A145534(1), a(8)=A145535(1), a(9)=A145536(1), a(10)=A145537(1). (End)
Generally, for n >= m, the formula a(n) = n*(a(n-1) + 1) - 1 applies to all natural numbers of the form (n!-m)/m, m >= 2. - Bob Selcoe, Mar 28 2015
LINKS
FORMULA
a(n) = Sum_{k=1..floor(n/2)} s(n,n-2*k), where s(n,k) are Stirling numbers of the first kind, A048994. - Mircea Merca, Apr 07 2012
a(n) = n*(a(n-1) + 1) - 1. - Bob Selcoe, Mar 28 2015
MATHEMATICA
Table[(n! - 2)/2, {n, 2, 20}]
PROG
(Magma) [(Factorial(n)-2)/2: n in [2..25]]; // Vincenzo Librandi, Jul 20 2011
(PARI) a(n)=n!/2-1 \\ Charles R Greathouse IV, Apr 07 2012
CROSSREFS
Sequence in context: A210646 A054564 A280674 * A228868 A290116 A251180
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Apr 11 2008
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 June 4 12:12 EDT 2024. Contains 373096 sequences. (Running on oeis4.)