[go: up one dir, main page]

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!)
Revision History for A286160 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A286160 Compound filter: a(n) = T(A000010(n), A046523(n)), where T(n,k) is sequence A000027 used as a pairing function.
(history; published version)
#18 by Bruno Berselli at Wed May 10 05:30:49 EDT 2017
STATUS

proposed

approved

#17 by Indranil Ghosh at Wed May 10 03:26:05 EDT 2017
STATUS

editing

proposed

#16 by Indranil Ghosh at Wed May 10 03:25:57 EDT 2017
PROG

def P(n):

f = factorint(n)

def P(n): return sorted([factorint(n)[f[i] for i in factorint(n)])f])

STATUS

approved

editing

#15 by Michel Marcus at Sat May 06 03:41:38 EDT 2017
STATUS

reviewed

approved

#14 by Joerg Arndt at Sat May 06 03:38:43 EDT 2017
STATUS

proposed

reviewed

#13 by Indranil Ghosh at Sat May 06 03:06:12 EDT 2017
STATUS

editing

proposed

#12 by Indranil Ghosh at Sat May 06 03:05:32 EDT 2017
PROG

(Python)

from sympy import factorint, totient

def T(n, m): return ((n + m)**2 - n - 3*m + 2)/2

def P(n): return sorted([factorint(n)[i] for i in factorint(n)])

def a046523(n):

x=1

while True:

if P(n) == P(x): return x

else: x+=1

def a(n): return T(totient(n), a046523(n)) # Indranil Ghosh, May 06 2017

STATUS

approved

editing

#11 by N. J. A. Sloane at Thu May 04 09:39:41 EDT 2017
STATUS

proposed

approved

#10 by Antti Karttunen at Thu May 04 09:39:18 EDT 2017
STATUS

editing

proposed

#9 by Antti Karttunen at Thu May 04 09:37:25 EDT 2017
CROSSREFS

Cf. alsofor example A061468. (one of the sequences this matches with).

Discussion
Thu May 04 09:39
Antti Karttunen: Used as a filtering sequence, thus longish data section.

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 August 29 11:15 EDT 2024. Contains 375512 sequences. (Running on oeis4.)