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!)
A086992 Product of nonzero digits in n-th row of Pascal's triangle. 1
1, 1, 2, 9, 96, 25, 1800, 44100, 103219200, 3869835264, 128000, 104976000000, 3071875232563200, 7050692013745766400, 626913312768, 332150625000000000000, 1292730125539029811200 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
EXAMPLE
a(6) = 25 because the digits in the 5th row of Pascal's triangle are 1,5,(1,0),(1,0),5,1, the product of the nonzero terms is 25. - Richard M. Green, Feb 12 2014
MATHEMATICA
A086992[n_]:= Times @@ DeleteCases[0]@Flatten@IntegerDigits@Table[Binomial[n, k], {k, 0, n}] (* JungHwan Min, Dec 07 2015 *)
PROG
(PARI) A051801(n)=my(v=select(k->k>1, digits(n))); prod(i=1, #v, v[i])
a(n)=prod(k=1, (n-1)\2, A051801(binomial(n, k)))^2*if(n%2, 1, A051801(binomial(n, n/2))) \\ Charles R Greathouse IV, Dec 08 2015
CROSSREFS
Sequence in context: A058156 A011837 A106343 * A354316 A345466 A115965
KEYWORD
base,easy,nonn
AUTHOR
Jason Earls, Jul 29 2003
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 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)