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-5 of 5 results.

A132740 Largest divisor of n coprime to 10.

Original entry on oeis.org

1, 1, 3, 1, 1, 3, 7, 1, 9, 1, 11, 3, 13, 7, 3, 1, 17, 9, 19, 1, 21, 11, 23, 3, 1, 13, 27, 7, 29, 3, 31, 1, 33, 17, 7, 9, 37, 19, 39, 1, 41, 21, 43, 11, 9, 23, 47, 3, 49, 1, 51, 13, 53, 27, 11, 7, 57, 29, 59, 3, 61, 31, 63, 1, 13, 33, 67, 17, 69, 7, 71, 9, 73, 37, 3, 19, 77, 39, 79, 1, 81
Offset: 1

Views

Author

Reinhard Zumkeller, Aug 27 2007

Keywords

Comments

Or: n with all factors of 2 and 5 removed. - M. F. Hasler, Apr 25 2017

Examples

			a(1050) = a(2*3*5*5*7) = 3*7 = 21.
		

Crossrefs

Programs

Formula

a(n) = A000265(A132739(n)) = A132739(A000265(n)) = n / A132741(n);
A051626(a(n)) = A051626(n); A007732(a(n)) = A007732(n);
a(A003592(n)) = 1.
Multiplicative with a(2^e) = 1, a(5^e) = 1 and a(p^e) = p^e for p = 3 and p >= 7.
Dirichlet g.f. zeta(s-1)*(2^s-2)*(5^s-5)/((2^s-1)*(5^s-1)). - R. J. Mathar, Sep 06 2011
Sum_{k=1..n} a(k) ~ (5/18) * n^2. - Amiram Eldar, Nov 28 2022

Extensions

Edited by M. F. Hasler, Apr 25 2017

A069105 1/n has period 3 in base 10.

Original entry on oeis.org

27, 37, 54, 74, 108, 111, 135, 148, 185, 216, 222, 270, 296, 333, 370, 432, 444, 540, 555, 592, 666, 675, 740, 864, 888, 925, 999, 1080, 1110, 1184, 1332, 1350, 1480, 1665, 1728, 1776, 1850, 1998, 2160, 2220, 2368, 2664, 2700, 2775, 2960, 3330, 3375, 3456, 3552, 3700, 3996, 4320, 4440, 4625, 4736, 4995
Offset: 1

Views

Author

Joshua Horowitz (mccartneyman(AT)yahoo.com), Apr 07 2002

Keywords

Examples

			1/1332 = 0.000750750750...
		

Crossrefs

Programs

  • Mathematica
    Select[ Range[7500], Length[ RealDigits[1/# ] [[1, -1]]] == 3 &]
  • PARI
    is(n,S=[27,37,111,333,999])=setsearch(S,n\5^valuation(n,5)>>valuation(n,2)) \\ M. F. Hasler, Apr 25 2017

Formula

Numbers of the form a*b*c where a is in {27, 37, 111, 333, 999}, b is a power of 2 and c is a power of 5. - Henry Bottomley, Apr 12 2002
Equivalently: A132740(n) divides 999 but does not divide 9. - M. F. Hasler, Apr 25 2017

Extensions

Extended by Robert G. Wilson v, Apr 07 2002
Terms added and program corrected to agree with description by Ray Chandler, Apr 17 2017

A070021 1/n has period 1 in base 10 (but not terminating).

Original entry on oeis.org

3, 6, 9, 12, 15, 18, 24, 30, 36, 45, 48, 60, 72, 75, 90, 96, 120, 144, 150, 180, 192, 225, 240, 288, 300, 360, 375, 384, 450, 480, 576, 600, 720, 750, 768, 900, 960, 1125, 1152, 1200, 1440, 1500, 1536, 1800, 1875, 1920, 2250, 2304, 2400, 2880, 3000, 3072, 3600
Offset: 1

Views

Author

Henry Bottomley, Apr 12 2002

Keywords

Examples

			12 is in the sequence since 1/12=0.08333333333...; 11 is not since 1/11=0.0909090909...; 10 is not, since despite 1/10=0.099999999..., it is also true that 1/10=0.1 exactly.
		

Crossrefs

Programs

  • Mathematica
    mx = 5000; Select[ Union@ Flatten@ Table[2^t*5^f {3, 9}, {t, 0, Log[2, mx/3]}, {f, 0, Log[5, mx/(2^t*3)]}], # < mx &] (* Robert G. Wilson v, Apr 27 2017 *)

Formula

Numbers of the form a*b*c where a is in {3, 9}, b is a power of 2 and c is a power of 5.

A070023 1/n has period 1 in base 10 (including terminating decimals).

Original entry on oeis.org

1, 2, 3, 4, 5, 6, 8, 9, 10, 12, 15, 16, 18, 20, 24, 25, 30, 32, 36, 40, 45, 48, 50, 60, 64, 72, 75, 80, 90, 96, 100, 120, 125, 128, 144, 150, 160, 180, 192, 200, 225, 240, 250, 256, 288, 300, 320, 360, 375, 384, 400, 450, 480, 500, 512, 576, 600, 625, 640, 720, 750
Offset: 1

Views

Author

Henry Bottomley, Apr 12 2002

Keywords

Examples

			12 is in the sequence since 1/12 = 0.08333333333...
11 is not since 1/11 = 0.0909090909...
10 is in, since 1/10 = 0.1000000... = 0.099999999...
		

Crossrefs

Programs

  • Mathematica
    Select[Range[750], Length[RealDigits[1/#][[1, -1]]] <= 1 &] (* Amiram Eldar, Jun 12 2022 *)

Formula

a(n) = A070022(n)/11. Numbers of the form a*b*c where a is in {1, 3, 9}, b is a power of 2 and c is a power of 5.

A069858 1/n has period 4 in base 10.

Original entry on oeis.org

101, 202, 303, 404, 505, 606, 808, 909, 1010, 1111, 1212, 1515, 1616, 1818, 2020, 2222, 2424, 2525, 3030, 3232, 3333, 3636, 4040, 4444, 4545, 4848, 5050, 5555, 6060, 6464, 6666, 7272, 7575, 8080, 8888, 9090, 9696, 9999, 10100, 11110, 12120, 12625
Offset: 1

Views

Author

Henry Bottomley, May 02 2002

Keywords

Examples

			1212 is in the sequence since 1/1212=0.0008250825082508250825082508250....
		

Crossrefs

Programs

  • Mathematica
    Select[Range[13000],Length[RealDigits[1/#][[1,-1]]]==4&] (* Harvey P. Dale, Jun 30 2017 *)

Formula

Numbers of the form a*b*c where a is in {101, 303, 909, 1111, 3333, 9999}, b is a power of 2 and c is a power of 5.
Showing 1-5 of 5 results.