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!)
A280446 Like A065759 but where f(n) = 2*n. 2
5848, 6884, 58480, 68840, 394062, 584800, 688400, 3940620, 5848000, 6884000, 39406200, 58480000, 68840000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers of the form 5848*10^k, 6884*10^k, 394062*10^k, with k>=0, belong to the sequence.
LINKS
EXAMPLE
5848 = concat(5*848) = concat(58*48) = concat(584*8) and (5*848 + 58*48 + 584*8) = 11696 = 2*5848.
MAPLE
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+(n mod 10^k)*trunc(n/10^k); od;
if a/n=2 then print(n); fi; od; end: P(10^9);
MATHEMATICA
Select[Range[10^6], Function[n, Module[{a = {}, e = IntegerLength@ n - 1, k}, Do[AppendTo[a, # (n - #*10^(e - k)) &@ Floor[n/10^(e - k)]], {k, 0, e - 1}]; Total@ a] == 2 n]] (* Michael De Vlieger, Jan 04 2017 *)
CROSSREFS
Sequence in context: A269275 A013809 A013888 * A248083 A031830 A297660
KEYWORD
nonn,base,more
AUTHOR
Paolo P. Lava, Jan 03 2017
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 May 9 18:10 EDT 2024. Contains 372354 sequences. (Running on oeis4.)