[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A278252
Least number with the prime signature of the n-th tetrahedral number, binomial(n+2,3).
2
1, 4, 6, 12, 6, 24, 60, 120, 30, 60, 30, 60, 30, 240, 120, 240, 30, 420, 210, 420, 30, 120, 180, 360, 180, 1260, 420, 420, 30, 480, 240, 480, 210, 4620, 2310, 420, 30, 840, 420, 840, 30, 420, 2310, 4620, 210, 240, 360, 3600, 180, 1260, 210, 1260, 420, 27720, 4620, 840, 30, 420, 210, 420, 210, 6720, 36960, 6720, 210, 420, 210, 4620, 210, 9240, 420, 840, 60, 1260
OFFSET
1,2
LINKS
FORMULA
a(n) = A046523(A000292(n)) = A046523(binomial(n+2,3)).
MATHEMATICA
Table[Times @@ MapIndexed[(Prime@ First@ #2)^#1 &, #] &@ If[Length@ # == 1 && #[[1, 1]] == 1, {0}, Reverse@ Sort@ #[[All, -1]]] &@ FactorInteger[ Binomial[n + 2, 3]], {n, 74}] (* Michael De Vlieger, Nov 21 2016 *)
PROG
(Scheme)
(define (A278252 n) (A046523 (A000292 n)))
(define (A000292 n) (/ (* n (+ 1 n) (+ 2 n)) 6))
(PARI) a(n)=my(e=vecsort(factor(binomial(n+2, 3))[, 2], , 4)~); factorback(primes(#e), e) \\ Charles R Greathouse IV, Feb 22 2017
CROSSREFS
Diagonal 3 of A278218.
Sequence in context: A078426 A212558 A293836 * A274298 A270835 A272063
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 19 2016
STATUS
approved