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.

User: Naohiro Nomoto

Naohiro Nomoto's wiki page.

Naohiro Nomoto has authored 383 sequences. Here are the ten most recent ones:

A361415 Numbers k such that A360016(k) > 0.

Original entry on oeis.org

5, 7, 9, 12, 15, 18, 23, 24, 30, 36, 37, 42, 45, 47, 51, 53, 57, 59, 60, 66, 67, 73, 75, 78, 81, 84, 87, 90, 93, 99, 102, 105, 108, 120, 122, 123, 131, 132, 138, 144, 147, 151, 153, 157, 165, 173, 177, 179, 180, 185, 186, 195, 196, 198, 207, 210, 211, 213, 225, 228, 233, 234, 237, 240, 245
Offset: 1

Author

Naohiro Nomoto, Mar 11 2023

Keywords

Crossrefs

Cf. A360016.

A360016 Number of partitions of 4*n into four odd primes (p_1, p_2, p_3, p_4) (p_1 < p_2 <= p_3 < p_4 and p_1 + p_4 = p_2 + p_3 = 2*n) such that (p_1, p_2) and (p_3, p_4) are consecutive pairs of prime numbers with the same difference, d = p_2 - p_1 = p_4 - p_3, and (p_1, p_3), (p_2, p_4) are also consecutive pairs of prime numbers with the same difference, D = p_3 - p_1 = p_4 - p_2.

Original entry on oeis.org

0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 3, 0
Offset: 1

Author

Naohiro Nomoto, Jan 21 2023

Keywords

Comments

Two pairs of primes, (q, r) and (s, t), are consecutive pairs of primes with the same difference d = r - q = t - s if there exists no other pair of primes (u, v) having the same difference d and lying between the pairs (q, r) and (s, t).

Examples

			a(57)=2 because there are two such partitions of 228: {43,47,67,71}, {43,53,61,71}.
In the first partition (i.e., p_1 = 43, p_2 = 47, p_3 = 67, p_4 = 71), (43,47) and (67,71) are prime pairs with difference 4 (since p_2 - p_1 = p_4 - p_3 = 4), and they are consecutive among such pairs (i.e., there does not exist any intervening pair of primes with difference 4). It is also true that (43,67) and (47,71) are prime pairs with difference 24 (since p_3 - p_1 = p_4 - p_2 = 24), and they are consecutive among such pairs (i.e., no intervening pair of primes with difference 24 exists).
Similarly, in the second partition (i.e., p_1 = 43, p_2 = 53, p_3 = 61, p_4 = 71), (43,53) and (61,71) are consecutive pairs of prime numbers with difference 10: p_2 - p_1 = p_4 - p_3 = 10, and (43,61) and (53,71) are consecutive pairs of prime numbers with difference 18: p_3 - p_1 = p_4 - p_2 = 18.
		

Programs

  • PARI
    chk(s, t, d)={forprime(p=s, t, if(isprime(p+d), return(0))); 1}
    a(n) = {my(s=0); forprime(p=3, n, if(isprime(2*n-p), forprime(q=p+1, n, if(isprime(2*n-q) && chk(p+1, 2*n-q-1, q-p) && chk(p+1,q-1,2*n-q-p), s++)))); s} \\ Andrew Howroyd, Feb 03 2023

A348286 Numbers k such that there exists 0 < a, b, c, d, e, f < k such that a + b = c + d = e + f and a*b = c*k + d , c*d = e*k + f.

Original entry on oeis.org

26, 41, 46, 49, 61, 66, 81, 82, 101, 109, 129, 141, 145, 163, 170, 177, 186, 201, 204, 209, 217, 218, 225, 244, 248, 253, 257, 266, 280, 289, 290, 302, 316, 325, 329, 341, 342, 343, 352, 353, 356, 361, 375, 378, 381, 386, 389, 401, 409, 417, 419, 431, 433, 436, 442, 449, 451, 465
Offset: 1

Author

Naohiro Nomoto, Oct 10 2021

Keywords

Examples

			For k = 26, a = 10, b = 15, c = 5, d = 20, e = 3, f = 22,
and 10*15 = 5*26 + 20, 5*20 = 3*26 + 22, 10 + 15 = 5 + 20 = 3 + 22.
		

A347168 Nonsquare positive integers k such that k = a*b = c*m + b and b^2 = a*m + c where m > 1, 0 < a, b, c < m.

Original entry on oeis.org

48, 432, 931, 2550, 11613, 27945, 49368, 68970, 123708, 172125, 235575, 365007, 515970, 602148, 614068, 854658, 1287057, 1723125, 2252628, 2436318, 3128520, 4223595, 5256603, 6850200, 8320782, 10545093, 12558784, 12562113, 15564882, 16238600, 18249300, 22193823
Offset: 1

Author

Naohiro Nomoto, Aug 20 2021

Keywords

Examples

			432 is a nonsquare, m = 45, a = 16, b = 27, c = 9, 432 = 16*27 = 9*45 + 27, 27^2 = 16*45 + 9. Therefore 432 is a term.
		

Extensions

a(6)-a(22) from Jon E. Schoenfield, Aug 20 2021
More terms from Jinyuan Wang, Aug 21 2021

A254035 Sequence A255412 sorted into ascending order, with duplicates removed.

Original entry on oeis.org

4800, 28800, 57600, 67200, 86400, 96000, 115200, 142800, 144000, 148800, 153600, 182400, 201600, 211200, 230400, 259200, 288000, 297600, 326400, 345600, 355200, 384000, 403200, 432000, 470400, 489600, 499200, 518400, 528000, 547200, 576000, 614400, 633600, 638400, 662400, 672000, 691200, 720000, 729600
Offset: 1

Author

Naohiro Nomoto, Jan 23 2015

Keywords

Comments

Numbers n such that n = A000203(j) = A000203(k) and A007947(j) = A007947(k), where j != k.
In other words, numbers n such that sigma(x) = n has at least two distinct solutions, with each x having the same squarefree kernel, where sigma(x) is the sum of divisor function (A000203).
Equally, sequence A000203(A255335(n)) sorted into ascending order, with duplicates removed.

Examples

			4800 is the sum of divisors of 1512 and 2058, and rad(1512) = rad(2058) = 42, hence 4800 is in the sequence with j=1512 and k=2058.
		

Crossrefs

Subsequence of A159886.
Cf. A000203 (sum of divisors of n), A007947 (squarefree kernel of n).
Cf. A254791 (a subsequence).

Formula

a(n) = A000203(A255334(n)) = A000203(A255335(n)) for n = 1 .. 7. - Antti Karttunen, Apr 05 2015

Extensions

More terms from Antti Karttunen, Apr 13 2015

A252997 Numbers n such that sigma(x) - x = n has at least two solutions, with each x having the same squarefree kernel, where sigma(x) is the sum of divisor function (A000203).

Original entry on oeis.org

218, 189648, 720240, 119967120, 129705984, 517941905, 707902440, 1321744320, 98890370304, 99080219520, 119922568640, 139834382688, 347612467648, 580542318720, 952717920000, 1064902900320, 1153644808680, 2255573174400, 3903820736256, 6859688278905, 10944640212480, 14424196864000
Offset: 1

Author

Naohiro Nomoto, Dec 25 2014

Keywords

Comments

Numbers n such that n = A001065(j) = A001065(k) and A007947(j) = A007947(k), where j != k.

Examples

			218 is the sum of proper divisors of 250 and 160, and rad(250) = rad(160) = 10, hence 218 is in the sequence with j=250 and k=160.
Other examples of n and j, k:
For n = 189648, j = 95832, k = 85536.
For n = 720240, j = 288120, k = 246960.
For n = 119967120, j = 38755080, k = 34398000.
For n = 129705984, j = 71614464, k = 60424704.
		

Crossrefs

Cf. A001065 (sum of proper divisors of n), A007947 (squarefree kernel of n).

Extensions

a(6) onward from Fred Schneider, Feb 07 2015

A252234 Numbers n such that there exists an m so that squarefree kernel of n = squarefree kernel of m, and n is the sum of the proper divisors of m (m may equal n).

Original entry on oeis.org

6, 28, 36, 50, 240, 312, 384, 450, 496, 810, 1008, 1344, 4256, 4536, 8128, 10800, 11700, 14112, 15288, 19656, 23040, 49686, 90720, 95040, 98280, 98553, 124848, 129024, 153760, 249018, 256932, 260100, 378225, 404586, 454860, 532224, 561834, 700245, 714240
Offset: 1

Author

Naohiro Nomoto, Dec 15 2014

Keywords

Comments

Since m=n is allowed, perfect numbers (A000396) are terms of this sequence. - Michel Marcus, Jan 02 2015
m: 6, 24, 28, 40, 120, 216, 234, 270, 360, 496, 588, 672, 2016, ..., . - Robert G. Wilson v, Feb 28 2015
Odd members are 98553, 378225, 700245, ..., . - Robert G. Wilson v, Feb 28 2015

Examples

			For n = 36, m = 24, 36 is the sum of the proper divisors of 24, and rad(36) = rad(24) = 6.
		

Crossrefs

Cf. A001065 (sum of proper divisors of n), A007947 (the squarefree kernel of n).

Programs

  • Mathematica
    rad[n_] := Times @@ (First@ # & /@ FactorInteger@ n); f[n_] := Block[{sd = DivisorSigma[1, n] - n}, If[ rad[n] == rad[sd], sd, 0]]; k = 1; lst = {}; While[k < 1000001, a = f@ k; If[a > 0, AppendTo[lst, a]]; k++]; Sort@ lst (* Robert G. Wilson v, Feb 28 2015 *)

A252056 a(n) is the least m such that m = A001065(j) = A001065(k) where j != k, A000005(j) = A000005(k) = n; or 0 if no such m exists.

Original entry on oeis.org

0, 1, 0, 13, 0, 73, 0, 106, 9064940, 4001, 0, 396, 0
Offset: 1

Author

Naohiro Nomoto, Dec 13 2014

Keywords

Comments

When n>2 and A001055(n)=1, then a(n)=0; because in that case, only a prime^n has n divisors, and then it is not possible to get twice the same value for sigma(x)-x. This happens for n=3, 5, 7, 11, 13, 17, 19, 23, 29, ... - Michel Marcus, Dec 16 2014
Note that for n=8, j and k do not have the same prime signature. - Michel Marcus, Dec 17 2014

Examples

			For n=2, all primes have 2 divisors and satisfy sigma(x)-x=1, so a(2) = 1.
For n=4, 27 and 35 have 4 divisors and the sum of their proper divisors is 13 for both (1+3+9 and 1+5+7).
For n=6, 98 and 175 have 6 divisors and the sum of their proper divisors is 73 for both (1+2+7+14+49 and 1+5+7+25+35).
For n=8, 104 and 110 have 8 divisors and the sum of their proper divisors is 106 for both (1+2+4+8+13+26+52 and 1+2+5+10+11+22+55).
For n=9, 163^2*167^2 and 61^2*353^2 have 9 divisors and the sum of their proper divisors is 9064940 for both.
For n=10, 7203 and 7857 have 10 divisors and the sum of their proper divisors is 4001 for both.
For n=12, 276 and 306 have 12 divisors and the sum of their proper divisors is 396 for both.
		

Crossrefs

Cf. A000005 (number of divisors of n), A001065 (sum of proper divisors of n).

Extensions

a(9)-a(13) from Michel Marcus, Dec 16 2014

A240836 Numbers n such that n^3 = x*y*z where 2 <= x <= y <= z , n^3+1 = (x-1)*(y+1)*(z+1).

Original entry on oeis.org

2, 12, 80, 546, 3740, 25632, 175682, 1204140, 8253296, 56568930, 387729212, 2657535552, 18215019650, 124847601996, 855718194320, 5865179758242, 40200540113372, 275538601035360, 1888569667134146, 12944449068903660, 88722573815191472, 608113567637436642
Offset: 1

Author

Naohiro Nomoto, Apr 12 2014

Keywords

Comments

Also, z/y approx = y/x approx = golden ratio.

Examples

			546^3 = 338 * 546 * 882, 546^3 + 1 = 337 * 547 * 883.
25632^3 = 15842 * 25632 * 41472, 25632^3 + 1 = 15841 * 25633 * 41473.
		

Crossrefs

Programs

  • GAP
    F:=Fibonacci;; List([1..30], n-> 2*F(2*n)*F(2*n-1) ); # G. C. Greubel, Jul 15 2019
  • Magma
    F:=Fibonacci; [2*F(2*n)*F(2*n-1): n in [1..30]]; // G. C. Greubel, Jul 15 2019
    
  • Maple
    with(combinat); A240836:=n->2*fibonacci(2*n)*fibonacci(2*n-1); seq(A240836(n), n=1..30); # Wesley Ivan Hurt, Apr 13 2014
  • Mathematica
    Table[2Fibonacci[2n]Fibonacci[2n-1], {n, 30}] (* Wesley Ivan Hurt, Apr 13 2014 *)
  • PARI
    vector(30, n, f=fibonacci; 2*f(2*n)*f(2*n-1)) \\ G. C. Greubel, Jul 15 2019
    
  • Sage
    f=fibonacci; [2*f(2*n)*f(2*n-1) for n in (1..30)] # G. C. Greubel, Jul 15 2019
    

Formula

a(n) = 2*F(2n)*F(2n-1) where F(n) are the Fibonacci numbers (A000045).
G.f.: 2*x*(1-2*x)/((1-x)*(1-7*x+x^2)). - Colin Barker, Apr 13 2014
a(n) = 2 * A081016(n-1). - Wesley Ivan Hurt, Apr 13 2014

Extensions

More terms from Colin Barker, Apr 13 2014

A226462 Smallest number m such that A226460(m) = n.

Original entry on oeis.org

0, 2, 5, 11, 23, 47, 83, 167, 179, 359, 1679, 719, 1439, 2879, 3959, 2159, 2519, 10799, 5039, 9239, 12599, 7559, 20159, 31679, 27719, 37799, 45359, 30239
Offset: 0

Author

Naohiro Nomoto, Jun 08 2013

Keywords

Comments

a(31) = 90719, a(32) = 55439, a(34) = 83159, all others are >= 100000. Most terms are one less than a largely composite number (A067128). - Charlie Neder, Nov 03 2018

Crossrefs

Cf. A048247.

Extensions

a(9)-a(27) from Charlie Neder, Nov 04 2018