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!)
A240505 Products of primes the squares of which are Fermi-Dirac divisors of n! 1
1, 1, 1, 2, 2, 3, 3, 6, 2, 5, 5, 10, 10, 70, 210, 210, 210, 35, 35, 14, 14, 154, 154, 462, 2310, 30030, 10010, 715, 715, 4290, 4290, 4290, 4290, 36465, 7293, 4862, 4862, 92378, 277134, 277134, 277134, 1939938, 1939938, 88179, 146965, 6760390, 6760390, 20281170 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Or equivalently, products of primes the squares of which are infinitary divisors of n!.
LINKS
PROG
(PARI) isidiv(d, f) = {if (d==1, return (1)); for (k=1, #f~, bne = binary(f[k, 2]); bde = binary(valuation(d, f[k, 1])); if (#bde < #bne, bde = concat(vector(#bne-#bde), bde)); for (j=1, #bne, if (! bne[j] && bde[j], return (0)); ); ); return (1); }
a(n) = {f = factor(n!); for (k=1, #f~, if ((f[k, 2] > 1) && isidiv(f[k, 1]^2, f), f[k, 2]=1, f[k, 2]=0); ); factorback(f); } \\ Michel Marcus, Feb 15 2016
CROSSREFS
Sequence in context: A103403 A052473 A165122 * A051715 A143269 A036817
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Apr 06 2014
EXTENSIONS
a(23)-a(32) from Michel Marcus, Feb 15 2016
a(1) = 1 and more terms from Rémy Sigrist, Feb 13 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 April 17 20:27 EDT 2024. Contains 371767 sequences. (Running on oeis4.)