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!)
A254624 Numbers x such that x = concatenate(a, b) and phi(a) + phi(b) = sigma(x) - x. 0
49, 169, 289, 611, 1751, 2171, 2231, 7921, 10751, 11479, 23153, 24367, 38551, 38809, 49901, 99101, 116303, 143351, 229441, 268151, 271441, 306181, 357101, 1030301, 2014751, 2078663 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
49 = concat(4,9); phi(4) = 2, phi(9) = 6, sigma(49) = 57; 2 + 6 = 8 = 57 - 49.
169 = concat(16,9); phi(16) = 8, phi(9) = 6, sigma(169) = 183; 8 + 6 = 14 = 183-169.
MAPLE
with(numtheory); P:=proc(q) local a, b, i, n; for n from 1 to q do
for i from 1 to ilog10(n) do a:=trunc(n/10^i); b:=n-a*10^i;
if phi(a)+phi(b)=sigma(n)-n then print(n); break;
fi; od; od; end: P(10^9);
CROSSREFS
Sequence in context: A226353 A074216 A216870 * A256074 A369565 A016922
KEYWORD
nonn,base
AUTHOR
Paolo P. Lava, Feb 03 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 24 14:54 EDT 2024. Contains 371960 sequences. (Running on oeis4.)