[go: up one dir, main page]

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!)
Revision History for A323444 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A323444 Sum of exponents in prime-power factorization of Product_{k=0..n} binomial(n,k) (A001142).
(history; published version)
#28 by Bruno Berselli at Fri Feb 01 11:56:52 EST 2019
STATUS

reviewed

approved

#27 by Michel Marcus at Thu Jan 31 06:18:00 EST 2019
STATUS

proposed

reviewed

#26 by Daniel Suteu at Mon Jan 28 08:34:28 EST 2019
STATUS

editing

proposed

#25 by Daniel Suteu at Mon Jan 28 08:33:35 EST 2019
PROG

(PARI) a(n) = my(r=0, t=0, b=0); forsum(k=1, n, my(b=bigomega(k); )); t += +=b; r += k*b-t); r; );

STATUS

proposed

editing

#24 by Michael De Vlieger at Sat Jan 19 13:16:57 EST 2019
STATUS

editing

proposed

#23 by Michael De Vlieger at Sat Jan 19 13:16:54 EST 2019
MATHEMATICA

Array[Sum[PrimeOmega@ Binomial[#, k], {k, 0, #}] &, 57] (* Michael De Vlieger, Jan 19 2019 *)

STATUS

proposed

editing

#22 by David A. Corneth at Wed Jan 16 11:29:20 EST 2019
STATUS

editing

proposed

Discussion
Wed Jan 16 11:30
David A. Corneth: (instead of n + 1 terms)
#21 by David A. Corneth at Wed Jan 16 11:26:37 EST 2019
PROG

(PARI) first(n) = my(res = List([0]), r=0, t=0, b=0); for(k=1, n, b=bigomega(k); t += b; r += k*b-t; listput(res, r)); res \\ adapted from Daniel Suteu \\ David A. Corneth, Jan 16 2019

STATUS

proposed

editing

Discussion
Wed Jan 16 11:29
David A. Corneth: Your prog suits perfectly for finding the first terms as it uses a recurrence on a(n) to find a(n+1). One might change "for(i = 1, n, " to "for(i = 1, n-1, " to actually get n terms.
#20 by Daniel Suteu at Tue Jan 15 10:56:02 EST 2019
STATUS

editing

proposed

#19 by Daniel Suteu at Tue Jan 15 10:55:58 EST 2019
PROG

(PARI) a(n) = bigomega(prodsum(k=0, n, bigomega(binomial(n, k)));

STATUS

proposed

editing

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 August 29 15:03 EDT 2024. Contains 375517 sequences. (Running on oeis4.)