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!)
A248904 Consider a decimal number of k>=2 digits z = d_(k)*10^(k-1) + d_(k-1)*10^(k-2) + … + d_(2)*10 + d_(1) and the sum y = Sum_{x=2..k} {Sum_{j=1..k-x}{d_(j+x-1)*10^(j-1)} - Sum_{j=1..x-1}{d_(j)*10^(j-1)}}. Sequence lists the numbers for which y = tau(z), where tau(z) is the number of divisors of z . 0
31, 51, 53, 62, 95, 97, 209, 318, 429, 443, 553, 886, 887, 2165, 2217, 4387, 4439, 5498, 5553, 6714, 7775, 8932, 10548, 56105, 56107, 78292, 78320, 78324, 78328, 88887, 89439, 99998, 110747, 111083, 221861, 332969, 438885, 667023, 667025, 671853, 888880, 1107504 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
For 78324 the sum y is: (7832 - 4) + (783 - 24) + (78 - 324) + (7 - 8324) = 7828 + 759 - 246 - 8317 = 24 and tau(78324) = 24.
MAPLE
with(numtheory): P:=proc(q) local a, k, n;
for n from 1 to q do a:=0;
for k from 1 to ilog10(n) do a:=a+trunc(n/10^k)-(n mod 10^k); od;
if a=tau(n) then print(n); fi; od; end: P(10^9);
CROSSREFS
CF. A000005.
Sequence in context: A004224 A194129 A288291 * A068779 A068473 A275628
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Mar 06 2015
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 20 00:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)