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.

A215403 Isotopes of Conway's audioactive transuranic elements, in reversed lexicographic order.

Original entry on oeis.org

312211322212221121123222114, 13112221133211322112211213322114, 312211322212221121123222115, 13112221133211322112211213322115, 312211322212221121123222116, 13112221133211322112211213322116, 312211322212221121123222117, 13112221133211322112211213322117
Offset: 1

Views

Author

Reinhard Zumkeller, Aug 09 2012

Keywords

Comments

The transuranic elements Pu=31221132221222112112322211 and Np=1311222113321132211221121332211 are alternating prefixes;
n is suffix of a(2*n - 1) and of a(2*n) in decimal representation.

Crossrefs

Programs

  • Haskell
    a215403 n k = a215403_list !! (n-1)
    a215403_list = map (foldr (\d v -> 10 * v + d) 0) $
                       concatMap (\x -> map (x :) [plut', nept']) [4..] where
      plut' = [1,1,2,2,2,3,2,1,1,2,1,1,2,2,2,1,2,2,2,3,1,1,2,2,1,3]
      nept' = [1,1,2,2,3,3,1,2,1,1,2,2,1,1,2,2,3,1,1,2,3,3,1,1,2,2,2,1,1,3,1]