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.

A003226 Automorphic numbers: m^2 ends with m.

Original entry on oeis.org

0, 1, 5, 6, 25, 76, 376, 625, 9376, 90625, 109376, 890625, 2890625, 7109376, 12890625, 87109376, 212890625, 787109376, 1787109376, 8212890625, 18212890625, 81787109376, 918212890625, 9918212890625, 40081787109376, 59918212890625, 259918212890625, 740081787109376
Offset: 1

Views

Author

Keywords

Comments

Also called curious numbers.
For entries after the second, two successive terms sum up to a total having the form 10^n + 1. - Lekraj Beedassy, Apr 29 2005 [This comment is clearly wrong as stated. The sums of two consecutive terms are 1, 6, 11, 31, 101, 452, 1001, 10001, 100001, 200001, 1000001, 3781250, .... - T. D. Noe, Nov 14 2010]
If a d-digit number n is in the sequence, then so is 10^d+1-n. However, the same number can be 10^d+1-n for different n in the sequence (e.g., 10^3+1-376 = 10^4+1-9376 = 625), which spoils Beedassy's comment. - Robert Israel, Jun 19 2015
Substring of both its square and its cube not congruent to 0 (mod 10). See A029943. - Robert G. Wilson v, Jul 16 2005
a(n)^k ends with a(n) for k > 0; see also A029943. - Reinhard Zumkeller, Nov 26 2011
Apart from initial term, a subsequence of A046831. - M. F. Hasler, Dec 05 2012
This is also the sequence of numbers such that the n-th m-gonal number ends in n for any m == 0,4,8,16 (mod 20). - Robert Dawson, Jul 09 2018
Apart from 6, a subsequence of A301912. - Robert Dawson, Aug 01 2018

References

  • J.-M. De Koninck, Ces nombres qui nous fascinent, Entry 76, p. 26, Ellipses, Paris 2008.
  • V. deGuerre and R. A. Fairbairn, Automorphic numbers, J. Rec. Math., 1 (No. 3, 1968), 173-179.
  • R. A. Fairbairn, More on automorphic numbers, J. Rec. Math., 2 (No. 3, 1969), 170-174.
  • Jan Gullberg, Mathematics, From the Birth of Numbers, W. W. Norton & Co., NY, page 253-254.
  • B. A. Naik, 'Automorphic numbers' in 'Science Today'(subsequently renamed '2001') May 1982 pp. 59, Times of India, Mumbai.
  • Ya. I. Perelman, Algebra can be fun, pp. 97-98.
  • Clifford A. Pickover, A Passion for Mathematics, John Wiley & Sons, Hoboken, 2005, p. 64.
  • C. P. Schut, Idempotents. Report AM-R9101, Centrum voor Wiskunde en Informatica, Amsterdam, 1991.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Programs

  • Haskell
    import Data.List (isSuffixOf)
    a003226 n = a003226_list !! (n-1)
    a003226_list = filter (\x -> show x `isSuffixOf` show (x^2)) a008851_list
    -- Reinhard Zumkeller, Jul 27 2011
    
  • Magma
    [n: n in [0..10^7] | Intseq(n^2)[1..#Intseq(n)] eq Intseq(n)]; // Vincenzo Librandi, Jul 03 2015
    
  • Maple
    V:= proc(m) option remember;
      select(t -> t^2 - t mod 10^m = 0, map(s -> seq(10^(m-1)*j+s, j=0..9), V(m-1)))
    end proc:
    V(0):= {0,1}:
    V(1):= {5,6}:
    sort(map(op,[V(0),seq(V(i) minus V(i-1),i=1..50)])); # Robert Israel, Jun 19 2015
  • Mathematica
    f[k_] := (r = Reduce[0 < 10^k < n < 10^(k + 1) && n^2 == m*10^(k + 1) + n, {n, m}, Integers]; If[Head[r] === And, n /. ToRules[r], n /. {ToRules[r]}]); Flatten[ Join[{0, 1}, Table[f[k], {k, 0, 13}]]] (* Jean-François Alcover, Dec 01 2011 *)
    Union@ Join[{1}, Array[PowerMod[5, 2^#, 10^#] &, 16, 0], Array[PowerMod[16, 5^#, 10^#] &, 16, 0]] (* Robert G. Wilson v, Jul 23 2018 *)
  • PARI
    is_A003226(n)={n<2 || 10^valuation(n^2-n,10)>n} \\ M. F. Hasler, Dec 05 2012
    
  • PARI
    A003226(n)={ n<3 & return(n-1); my(i=10,j=10,b=5,c=6,a=b); for( k=4,n, while(b<=a, b=b^2%i*=10); while(c<=a, c=(2-c)*c%j*=10); a=min(b,c)); a } \\ M. F. Hasler, Dec 06 2012
    
  • Python
    from itertools import count, islice
    from sympy.ntheory.modular import crt
    def A003226_gen(): # generator of terms
        a = 0
        yield from (0,1)
        for n in count(0):
            b = sorted((int(crt(m:=(1< a:
                yield from b
                a = b[1]
            elif b[1] > a:
                yield b[1]
                a = b[1]
    A003226_list = list(islice(A003226_gen(),15)) # Chai Wah Wu, Jul 25 2022
  • Sage
    def automorphic(maxdigits, pow, base=10) :
        morphs = [[0]]
        for i in range(maxdigits):
            T=[d*base^i+x for x in morphs[-1] for d in range(base)]
            morphs.append([x for x in T if x^pow % base^(i+1) == x])
        res = list(set(sum(morphs, []))); res.sort()
        return res
    # call with pow=2 for this sequence, Eric M. Schmidt, Feb 09 2014
    

Formula

Equals {0, 1} union A007185 union A016090.

Extensions

More terms from Michel ten Voorde, Apr 11 2001
Edited by David W. Wilson, Sep 26 2002
Incorrect statement removed from title by Robert Dawson, Jul 09 2018

A067270 Numbers m such that m-th triangular number (A000217) ends in m.

Original entry on oeis.org

0, 1, 5, 25, 625, 9376, 90625, 890625, 7109376, 12890625, 212890625, 1787109376, 81787109376, 59918212890625, 259918212890625, 3740081787109376, 56259918212890625, 256259918212890625, 7743740081787109376
Offset: 1

Views

Author

Joseph L. Pe, Feb 21 2002

Keywords

Comments

Thanks to David W. Wilson for the proof that this sequence is a proper subset of A003226.
Also, numbers m such that the m-th k-gonal number ends in m for k == 1, 3, 5, or 9 (mod 10). - Robert Dawson, Jul 09 2018
This sequence is the intersection of A093534 and A301912. - Robert Dawson, Aug 01 2018

Examples

			The 5th triangular = 15 ends in 5, hence 5 is a term of the sequence.
		

Crossrefs

Proper subset of A003226. Cf. A007185, A018247, A016090, A018248.
Intersection of A093534 and A301912.

Programs

  • Mathematica
    (* a5=A018247 less the commas; a6=A018248 less the commas; *)
    b5 = FromDigits[ Reverse[ IntegerDigits[a5]]]; b6 = FromDigits[ Reverse[ IntegerDigits[a6]]]; f[0] = 1; f[n_] := Block[{c5 = Mod[b5, 10^n], c6 = Mod[b6, 10^n]}, If[ Mod[c5(c5 + 1)/2, 10^n] == c5, c5, c6]]; Union[ Table[ f[n], {n, 0, 20}]]
  • Python
    from itertools import count, islice
    from sympy.ntheory.modular import crt
    def A067270_gen(): # generator of terms
        a = 0
        yield from (0,1)
        for n in count(0):
            if (b := int(min(crt(m:=(1<<(n+1),5**n),(0,1))[0], crt(m,(1,0))[0]))) > a:
                yield b
                a = b
    A067270_list = list(islice(A067270_gen(),15)) # Chai Wah Wu, Jul 25 2022

Extensions

Edited and extended by Robert G. Wilson v, Nov 20 2002
0 prepended by David A. Corneth, Aug 02 2018
Showing 1-2 of 2 results.