login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A191854 First factor in happy factorization of n-th rectangular number. 7

%I #20 Feb 28 2020 22:12:07

%S 1,1,2,1,3,1,7,1,2,4,3,2,1,7,1,5,11,17,1,2,3,1,6,11,5,23,1,4,1,2,11,7,

%T 3,1,15,1,31,1,2,4,23,5,8,1,1,19,7,26,1,3,1,2,1,9,23,3,47,19,1,49,1,2,

%U 5,1,27,1,10,3,7,1,2,4,9,2,1,31,1,14,3,1

%N First factor in happy factorization of n-th rectangular number.

%C a(n) = A007966(A007969(n)) = A007969(n) / A191855(n);

%C (a(n), A191855(n)) is a 1-happy couple;

%C notation: B in the Conway link.

%H Reinhard Zumkeller, <a href="/A191854/b191854.txt">Table of n, a(n) for n = 1..200</a>

%H J. H. Conway, <a href="http://www.cs.uwaterloo.ca/journals/JIS/happy.html">On Happy Factorizations</a>, J. Integer Sequences, Vol. 1, 1998, #1.

%t r[b_, c_] := (red = Reduce[x>0 && y>0 && b*x^2 + 1 == c*y^2, {x, y}, Integers] /. C[1] -> 1 // Simplify; If[Head[red] === Or, First[red], red]); f[128] = {}(* to speed up *); f[n_] := f[n] = If[IntegerQ[Sqrt[n]], {}, Do[c = n/b; If[(r0 = r[b, c]) =!= False, {x0, y0} = {x, y} /. ToRules[r0]; Return[{b, c, x0, y0}]], {b, Divisors[n] // Most}]]; A191854 = Reap[Table[Print[n, " ", f[n]]; If[f[n] != {} && f[n] =!= Null, Sow[f[n][[1]]]], {n, 1, 130}]][[2, 1]] (* _Jean-François Alcover_, Sep 18 2015 *)

%o (Haskell)

%o a191854 = a007966 . a007969 -- _Reinhard Zumkeller_, Oct 11 2015

%Y Cf. A007966, A007969, A191855.

%K nonn

%O 1,3

%A _Reinhard Zumkeller_, Jun 18 2011

%E Wrong formula removed (thanks to _Wolfdieter Lang_, who pointed this out) by _Reinhard Zumkeller_, Oct 11 2015

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)