cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-2 of 2 results.

A253046 An involution of the natural numbers: if n = 2*p_i then replace n with 3*p_{i+1}, and conversely if n = 3*p_i then replace n with 2*p_{i-1}, where p_i denotes the i-th prime.

Original entry on oeis.org

1, 2, 3, 9, 5, 15, 7, 8, 4, 21, 11, 12, 13, 33, 6, 16, 17, 18, 19, 20, 10, 39, 23, 24, 25, 51, 27, 28, 29, 30, 31, 32, 14, 57, 35, 36, 37, 69, 22, 40, 41, 42, 43, 44, 45, 87, 47, 48, 49, 50, 26, 52, 53, 54, 55, 56, 34, 93, 59, 60, 61, 111, 63, 64, 65, 66, 67
Offset: 1

Views

Author

N. J. A. Sloane, Dec 26 2014

Keywords

Comments

a(m) != m iff m is a term of A253106, i.e., a semiprime divisible by 2 or 3; a(A100484(n)) > A100484(n); a(A001748(n)) < A001748(n). - Reinhard Zumkeller, Dec 26 2014

Crossrefs

Programs

  • Haskell
    a253046 n | i == 0 || p > 3 = n
              | p == 2          = 3 * a000040 (i + 1)
              | otherwise       = 2 * a000040 (i - 1)
                where i = a049084 (div n p);  p = a020639 n
    -- Reinhard Zumkeller, Dec 26 2014
    
  • Mathematica
    a253046[n_] := Block[{f},
      f[x_] := Which[PrimeQ[x/2], 3 NextPrime[x/2],
        PrimeQ[x/3], 2 NextPrime[x/3, -1],
    True, x];Array[f, n]]; a253046[67] (* Michael De Vlieger, Dec 27 2014 *)
  • Python
    from sympy import isprime, nextprime, prevprime
    def A253046(n):
        q2, r2 = divmod(n,2)
        if not r2 and isprime(q2):
            return 3*nextprime(q2)
        else:
            q3, r3 = divmod(n,3)
            if not r3 and isprime(q3):
                return 2*prevprime(q3)
            return n # Chai Wah Wu, Dec 27 2014

A171156 Numbers of the form 2p or 3p where p is a prime greater than 3.

Original entry on oeis.org

10, 14, 15, 21, 22, 26, 33, 34, 38, 39, 46, 51, 57, 58, 62, 69, 74, 82, 86, 87, 93, 94, 106, 111, 118, 122, 123, 129, 134, 141, 142, 146, 158, 159, 166, 177, 178, 183, 194, 201, 202, 206, 213, 214, 218, 219, 226, 237, 249, 254, 262, 267, 274, 278, 291, 298, 302
Offset: 1

Views

Author

Juri-Stepan Gerasimov, Dec 04 2009

Keywords

Comments

Squarefree semiprimes (A006881) which have exactly one prime factor <=3 [R. J. Mathar, Dec 09 2009]

Crossrefs

Programs

  • Maple
    isA171156 := proc(n) local f; f := numtheory[factorset](n) ; if numtheory[bigomega](n) = 2 and nops(f) = 2 then if f = {2,3} then false; else (n mod 2) = 0 or (n mod 3) = 0 ; fi; else false; fi; end:
    for n from 10 to 500 do if isA171156(n) then printf("%d,",n) ; fi; od: # R. J. Mathar, Dec 09 2009

Extensions

Edited by Charles R Greathouse IV, Mar 25 2010
Showing 1-2 of 2 results.