cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A053667 Product of digits of n^2.

Original entry on oeis.org

0, 1, 4, 9, 6, 10, 18, 36, 24, 8, 0, 2, 16, 54, 54, 20, 60, 144, 24, 18, 0, 16, 128, 90, 210, 60, 252, 126, 224, 32, 0, 54, 0, 0, 30, 20, 108, 162, 64, 10, 0, 48, 168, 288, 162, 0, 12, 0, 0, 0, 0, 0, 0, 0, 108, 0, 54, 216, 216, 96, 0, 42, 384, 1458, 0, 80, 360, 1152, 192, 168, 0, 0, 160
Offset: 0

Views

Author

Enoch Haga, Feb 17 2000

Keywords

Examples

			a(7)=36 because 7^2=49 and 4*9=36.
		

Programs

  • Mathematica
    Times@@@IntegerDigits[Range[0,100]^2] (* Harvey P. Dale, May 30 2021 *)
  • PARI
    a(n) = my(d = digits(n^2)); prod(i=1, #d, d[i]); \\ Michel Marcus, Jun 06 2014

Formula

a(n) = A007954(n^2). - Michel Marcus, Jun 06 2014