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.

Showing 1-1 of 1 results.

A069557 Squares in which the k-th significant digit either divides k or is a multiple of k. Is 1 only in case k has no other single-digit divisor.

Original entry on oeis.org

1, 4, 9, 25, 49, 64, 81, 324, 361, 625, 961, 4624, 8649, 7354944
Offset: 1

Views

Author

Amarnath Murthy, Mar 22 2002

Keywords

Comments

If the smallest prime divisor of n is > 7 only in such case the n-th digit is 1.
a(15) > 10^25 if it exists. - David A. Corneth, May 05 2024
The definition implies that no digit can be zero. - N. J. A. Sloane, May 05 2024

Examples

			8649 is a member in which the fourth digit is 8, a multiple of 4, the third one is 6, a multiple of 3, the second one is 4, a multiple of 2 and the least significant digit is 9.
		

Crossrefs

Programs

  • Mathematica
    okQ[n_]:=Module[{idn=IntegerDigits[n]}, Count[idn,0]==0 && And@@Divisible[idn,Range[Length[idn],1,-1]]]; Select[Range[500]^2, okQ]  (* Harvey P. Dale, Dec 20 2010 *)
  • PARI
    \\ See PARI link

Extensions

More terms from Sascha Kurz, Mar 23 2002
Offset corrected and a(14) from Sean A. Irvine, May 04 2024
Showing 1-1 of 1 results.