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!)
A222637 Squarefree part of the total number of arrangements of a set with n elements. 4
1, 2, 5, 1, 65, 326, 1957, 137, 109601, 986410, 9864101, 27126278, 7704505, 16926797486, 236975164805, 888656868019, 56874039553217, 966858672404690, 17403456103284421, 826664164906010, 6613313319248080001, 138879579704209680022, 3055350753492612960485 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
F. Luca and I. E. Shparlinski, On the squarefree parts of floor(e*n!), Glasgow Math. J., 49 (2007), 391-403.
FORMULA
a(n) = core(A000522(n)).
MAPLE
A000522 := proc(n)
add( n!/k!, k=0..n) ;
end proc:
A222637 := proc(n)
end proc: # R. J. Mathar, Jan 16 2014
MATHEMATICA
core[n_] := Times @@ Power @@@ ({#[[1]], Mod[#[[2]], 2]}& /@ FactorInteger[n]);
a[n_] := If[n == 0, 1, core[Floor[E*n!]]];
Table[a[n], {n, 0, 22}] (* Jean-François Alcover, Apr 04 2024 *)
PROG
(PARI) a(n) = core(n! * polcoeff(exp(x + x*O(x^n)) / (1 - x), n))
CROSSREFS
Sequence in context: A242783 A177250 A102786 * A190950 A355676 A159985
KEYWORD
nonn
AUTHOR
Michel Marcus, Feb 27 2013
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 12 02:10 EDT 2024. Contains 372431 sequences. (Running on oeis4.)