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”).

A153874
Numbers n = abc...k such that a^2*b^2*c^2*...k^2 - 1 = n.
0
143, 323, 11663
OFFSET
1,1
EXAMPLE
1) 143 = 1^2 * 4^2 * 3^2 - 1 = 1 * 16* 9 - 1. 2) 323 = 3^2 * 2^2 * 3^2 - 1 = 9 * 4 * 9 - 1. 3) 1663 = 1^2 * 1^2* 6^2 * 6^2 * 3^2 - 1 = 1 * 1 * 36 * 36 * 9 - 1.
MATHEMATICA
Select[Range[12000], #==Times@@(IntegerDigits[#]^2)-1&] (* Harvey P. Dale, Feb 06 2022 *)
PROG
(PARI) n=1; while(n!=10^16, n+=1; j=n^2-1; k=1; while(j!=0, k=k*(j%10)^2; j=floor(j/10)); if(k-1==n^2-1, print(n^2-1)))
CROSSREFS
Sequence in context: A176876 A257767 A158136 * A003902 A261074 A213337
KEYWORD
base,nonn,fini,full,bref
AUTHOR
Vikram Pandya, Jan 03 2009
EXTENSIONS
Edited by N. J. A. Sloane, Jan 03 2009
STATUS
approved