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.

A096926 Numbers n for which there are exactly five k such that n = k + (product of nonzero digits of k).

This page as a plain text file.
%I A096926 #2 Mar 30 2012 17:27:42
%S A096926 1098,1126,1180,1272,1474,1546,1564,2014,2125,2418,3180,3230,3442,
%T A096926 5222,5358,5640,6245,7185,7666,8155,8173,8412,9214,9229,9450,9518,
%U A096926 10074,10102,10110,10134,10212,10228,10355,10445,10455,10474,10546,10827
%N A096926 Numbers n for which there are exactly five k such that n = k + (product of nonzero digits of k).
%e A096926 937, 982, 1077, 1118 and 1122 are the only five k such that k + (product of nonzero digits of k) = 1126, hence 1126 is a term.
%o A096926 (PARI) {c=5;z=11000;v=vector(z);for(n=1,z+1,k=addpnd(n);if(k<=z,v[k]=v[k]+1));for(j=1,length(v),if(v[j]==c,print1(j,",")))} \\for function addpnd see A096922
%Y A096926 Cf. A063114, A096347, A096922 - A096925, A096927 - A096931.
%K A096926 nonn,base
%O A096926 1,1
%A A096926 _Klaus Brockhaus_, Jul 15 2004