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!)
A207360 Numbers n, not squarefree, satisfying A055231(n) = A055231(n + A055231(n)). 0

%I #17 Jan 09 2013 14:38:56

%S 8,40,56,88,104,136,152,184,232,248,280,288,296,328,344,376,424,440,

%T 472,488,520,536,568,584,616,632,664,675,680,712,728,760,776,808,824,

%U 856,872,904,920,952,1016,1048,1064,1096,1112,1144,1160,1192,1208,1240,1256

%N Numbers n, not squarefree, satisfying A055231(n) = A055231(n + A055231(n)).

%C A055231(n) is the powerfree part of n.

%C This sequence is infinite because the numbers of the form n = 8p, where p is prime, are in the sequence : A055231(8p) = p and A055231(8p + p) = A055231(9p) = p.

%C The numbers such that n and n+1 are a pair of consecutive powerful numbers (the again infinite A060355) are also in the sequence because A055231 (A060355(n)) = A055231(A060355 (n+1)) = 1.

%e 136 is in the sequence because A055231(136) = A055231(17*2^3) = 17, A055231(136 + 17) = A055231(153) = A055231(17*3^2) = 17.

%p isA013929 := proc(n)

%p n>3 and not numtheory[issqrfree](n) ;

%p end proc:

%p isA207360 := proc(n)

%p isA013929(n) and (A055231(n)- A055231(n+ A055231(n))=0);

%p end proc:

%p for n from 1 to 5000 do

%p if isA207360(n) then

%p printf(`%d, `,n);

%p end if;

%p end do: # (adapted from A140394).

%o (PARI) isA013929(n)={

%o (n>3) && !issquarefree(n)

%o }

%o isA207360(n)={

%o isA013929(n) && ( A055231(n)-A055231(n+A055231(n)) ==0)

%o }

%o { for(n=1,1300, if(isA207360(n), print1(n" ") ) ; ) ;

%o } /* _R. J. Mathar_, Mar 12 2012 */

%Y Cf. A055231, A060355, A140394.

%K nonn

%O 1,1

%A _Michel Lagneau_, Feb 17 2012

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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)