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!)
A237523 a(n) = |{0 < k < n/2: phi(k*(n-k)) + 1 is a square}|, where phi(.) is Euler's totient function. 3

%I #22 Feb 09 2014 09:31:42

%S 0,0,0,0,0,0,0,1,1,2,2,2,1,2,1,2,5,4,4,1,3,3,3,2,4,4,4,2,4,5,6,5,3,3,

%T 3,6,5,4,4,6,6,2,6,6,6,2,6,5,5,2,4,4,7,7,4,3,5,5,9,5,5,3,5,2,3,10,10,

%U 9,7,5,8,5,9,8,6,4,5,6,11,5

%N a(n) = |{0 < k < n/2: phi(k*(n-k)) + 1 is a square}|, where phi(.) is Euler's totient function.

%C Conjecture: (i) a(n) > 0 for all n > 7, and a(n) = 1 only for n = 8, 9, 13, 15, 20, 132.

%C (ii) If n > 5 is not among 10, 15, 20, 60, 105, then phi(k*(n-k)) is a square for some 0 < k < n/2.

%C See also A237524 for a similar conjecture involving higher powers.

%H Zhi-Wei Sun, <a href="/A237523/b237523.txt">Table of n, a(n) for n = 1..10000</a>

%e a(8) = 1 since phi(3*5) + 1 = 8 + 1 = 3^2.

%e a(9) = 1 since phi(4*5) + 1 = 8 + 1 = 3^2.

%e a(13) = 1 since phi(3*10) + 1 = 8 + 1 = 3^2.

%e a(15) = 1 since phi(7*8) + 1 = 24 + 1 = 5^2.

%e a(20) = 1 since phi(6*14) + 1 = 24 + 1 = 5^2.

%e a(132) = 1 since phi(46*(132-46)) + 1 = 1848 + 1 = 43^2.

%t SQ[n_]:=IntegerQ[Sqrt[n]]

%t s[n_]:=SQ[EulerPhi[n]+1]

%t a[n_]:=Sum[If[s[k(n-k)],1,0],{k,1,(n-1)/2}]

%t Table[a[n],{n,1,80}]

%Y Cf. A000010, A000290, A234246, A236998, A237497, A237524.

%K nonn

%O 1,10

%A _Zhi-Wei Sun_, Feb 08 2014

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 23 15:20 EDT 2024. Contains 371916 sequences. (Running on oeis4.)